RosettaCodeData/Task/Write-entire-file/C/write-entire-file-1.c
2023-07-01 13:44:08 -04:00

11 lines
291 B
C

/*
* Write Entire File -- RossetaCode -- dirty hackish solution
*/
#define _CRT_SECURE_NO_WARNINGS // turn off MS Visual Studio restrictions
#include <stdio.h>
int main(void)
{
return 0 >= fputs("ANY STRING TO WRITE TO A FILE AT ONCE.",
freopen("sample.txt","wb",stdout));
}