#include int main(void) { FILE * foo = fopen("/tmp/sparsed", "w+"); fseek(foo, 1024*1024, SEEK_SET); fprintf(foo, "%s", "coucou"); fclose(foo); }