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