#include void main(void) { char s[]="hi there, is this working?\n"; int i; while(1){ for(i=0;s[i]!='\0';i++){ putchar(s[i]); } } putchar('\n'); /*printf("hi there, is this working?");*/ /*scanf("%s",&s);*/ /*printf("you typed %s",s);*/ return; }