Mega Code Archive

 
Categories / C / Code Snippets
 

Writes a character to the output stream

//Header file: #include <stdio.h> //Declaration: int putc(int ch, FILE *stream); //Return: returns the character written on success and EOF on error. #include <stdio.h> int main(void){ FILE *filep; if((filep=fopen("test", "w"))==NULL) { printf("Cannot open file.\n"); exit(1); } char *str = "I Love Clementine"; for(; *str; str++){ putc(*str, filep); } }