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 the first values from binary file in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

int main(void)
{
    enum { SIZE = 4 };
    
    FILE* fp = fopen("d:\\data.bin", "wb");
    assert(fp);
    
    size_t rc = fwrite((double[SIZE]) { 1.382, 3.14, 8.7, 0.04 }, sizeof(double), SIZE, fp);
    assert(rc == SIZE);
    fclose(fp);

    fp = fopen("d:\\data.bin", "rb");
    double d;
    rc = fread(&d, sizeof d, 1, fp); // read the first double
    assert(rc == 1);
    printf("First value in the file: %.3f\n", d);
    fclose(fp);

    return 0;
}



/*
run:

First value in the file: 1.382

*/

 



answered Apr 20, 2024 by avibootz

Related questions

1 answer 128 views
1 answer 351 views
1 answer 130 views
1 answer 136 views
2 answers 255 views
255 views asked Dec 30, 2020 by avibootz
1 answer 220 views
...