08 다음 C 언어로 구현된 프로그램을 분석하여 그 실행 결과를 쓰시오. (단, 출력문의 출력 서식을 준수하시오.) #include struct A { int n; int g;}main() { struct A st[2]; for(int i=0; i 답더보기2 해설코드실행순서 및 해석1#include 2struct A {1구조체 A 선언3 int n;2정수형 변수 n 선언4 int g;3정수형 변수 g 선언5} 6main() {4실행7 struct A st[2];52개의 변수를 담은 배열 st를 A의 구조체로 선언8 for(int i=0; i60, 1 반복9 st[i].n=i;7 10 st[i].g=i+1;..