Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(void)
- {
- char str[80];
- printf("문자열 입력 : ");
- scanf("%s",str);
- printf("입력된 문자열 : \n");
- printf("%s\n",str);
- return 0;
- }
RAW Paste Data