Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to read struct with numbers from binary file in C

1 Answer

0 votes
#include <stdio.h>
 
struct rectangle
{
    int x, y;
}; 
 
int main(int argc, char **argv) 
{ 
    FILE *f;
    struct rectangle rec;
 
    f = fopen("d:\\data.bin", "rb");
    if (!f)
    {
        printf("Unable to open d:\\data.bin");
        return 1;
    }
    for (int i = 1; i <= 10; i++)
    {
        fread(&rec, sizeof(struct rectangle), 1, f);
        printf("%d %d\n", rec.x, rec.y);
    }
            
     
    fclose(f);
     
    return(0);
}
 
/*

run:

2 1
4 2
6 3
8 4
10 5
12 6
14 7
16 8
18 9
20 10

*/

 



answered Jul 24, 2015 by avibootz

Related questions

1 answer 216 views
2 answers 255 views
255 views asked Dec 30, 2020 by avibootz
1 answer 234 views
1 answer 194 views
1 answer 173 views
173 views asked Jul 24, 2015 by avibootz
1 answer 151 views
151 views asked Dec 30, 2020 by avibootz
...