putchar - Print to the stdout in C


#include <stdio.h>
int main(void){

   char *str = "www.forgetcode.com";

   for(; *str; str++){
       putchar(*str);
   }
}