C Programming Tips & Tricks





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
Code Snippets
 List All
 Arrays
 Calculators
 Datatypes
 Date & Time
 File Manipulation
 Math Functions
 Multimedia
 Others
 




Print to a File - C

Snippets  C  Print to a File
Snippet On
Print to a File




Code
  
Rate this page :
  [ 0 votes]


#include <stdio.h>
int main()
{
FILE *fp;
int rating = 9;
if (fp = fopen(<q>e:/abc.txt</q>, <q>w</q>))
{
fprintf(fp, <q>WWW\n</q>);
fprintf(fp, <q>hscripts.com\n</q>);
fprintf(fp, <q>Rating out of 10 : %d \n</q>,rating );
fclose(fp);
}
else
printf(<q>Error opening file\n</q>);
return 0;
}





Other Links

web hosting