Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
int main() { FILE *fptr; // Open a file in writing mode fptr = fopen("filename.txt", "w"); // Write some text to the file fprintf(fptr, "Hello World!"); // Close the file fclose(fptr); return 0; }
Write To a File Example
This is just an example to show what it looks like when you open the file that you just wrote to: