//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 = "I Love Clementine";
for(; *str; str++){
putchar(*str);
}
}
/*
I Love Clementine*/