Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- typedef struct
- {
- float x;
- float y;
- }Point;
- void kolos1()
- {
- FILE *fp = fopen("file.bin", "wb");
- Point arr[5] = { {1,2},{3,4},{5,6},{7,8},{9,10} };
- fwrite(arr, sizeof(Point), sizeof(arr) / sizeof(Point), fp);
- fclose(fp);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement