Created
October 12, 2017 00:09
-
-
Save danielsaad/aa2ad13c0ff5a35e57deaf91ec4dc217 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(void){ | |
char str[51]; | |
while(scanf("%50[^\n]%*c",str)!=EOF){ | |
printf("%s lido.\n",str); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pressione ctrl+D no terminal para efetivar o EOF.