1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #pragma warning (disable:4996) #include <stdio.h> #include <string.h> int main() { char string1[51] = { '\0', }; scanf("%s", string1); strcat(string1, "fighting"); printf("%s", string1); return 0; } | cs |
프로그래밍 문제/정올