Stdio H C

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