Create While.c

master
MD15 2020-04-10 12:37:40 +07:00 committed by GitHub
parent 9263463395
commit 61f3af9c87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

8
06. Perulangan/While.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main () {
char a[101];
while(scanf("%s",a)!= EOF) {
printf("%s\n",a);
}
}