배열 - 배열 수행평가4(배열차이구하기)

2018. 7. 8. 11:41algorithm/dimigo.goorm.io


#include <stdio.h>

int main() {

char input[100];

scanf("%s",input);

printf("Hello Goorm! Your input is %s",input);

return 0;

}