I have this but once it reaches the supposed EOF it just repeats the loop and scanf again.
int main(void) { char words[16]; while(scanf(\"%1
I guess best way to do this is ...
int main() { char str[100]; scanf("[^EOF]",str); printf("%s",str); return 0; }