프로그래밍 언어 활용난도 중상
4번 · 주관식 · 5점
다음 C 프로그램의 실행 결과를 쓰시오.
#include <stdio.h>
#include <string.h>
int main(void) {
char word[] = "ABCDEFG";
int n = (int)strlen(word);
for (int i = n - 1; i >= 0; i -= 2)
putchar(word[i]);
return 0;
}