[Solved] How to save uint64_t bytes to file on C?
EDIT. Since my compiler does not have uint64_t I have shown two ways to save a 64-bit value to file, by using unsigned long long. The first example writes it in (hex) text format, the second in binary. Note that unsigned long long may be more than 64 bits on some systems. #include <stdio.h> int … Read more