아래 코드의 출력값을 작성하시오.
#include <stdio.h>
int main(void) {
char str[] = "REPUBLICOFKOREA";
int a = 0;
while (str[a] != '\0') ++a;
putchar(str[a - 2]);
return 0;
}이 문제는 풀이 화면에서 직접 실행해 풀 수 있어요.
#include <stdio.h>
int main(void) {
char str[] = "REPUBLICOFKOREA";
int a = 0;
while (str[a] != '\0') ++a;
putchar(str[a - 2]);
return 0;
}이 문제는 풀이 화면에서 직접 실행해 풀 수 있어요.