64. 다음 C언어 프로그램이 실행되었을 때의 결과는?
#include <stdio.h>
#include <string.h>
int main(void) {
char str[50]="nation";
char *p2="alter";
strcat(str, p2);
printf("%s", str);
return 0;
}
- 1nation

- 2nationalter

- 3alter

- 4alternation
