Mega Code Archive

 
Categories / C / Stdio H
 

Putchar

//Header file:     #include <stdio.h>   //Declaration:     int putchar(int ch);  //Return:          returns the character written if successful or EOF on error.     #include <stdio.h> int main(void){    char *str = "www.rntsoft.com";    for(; *str; str++){        putchar(*str);    } }           /* www.rntsoft.com*/