계속 컴파일 에러가 나는데 이유를 도저히 모르겠네요.
[code:1]
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
int Scenario_2[2][3] =
{
{1, 1, 1},
{2, 2, 2}
};
int Scenario_3[3][3] =
{
{1, 1, 1},
{2, 2, 2},
{3, 3, 3}
};
int Scenario_4[4][3] =
{
{1, 1, 1},
{2, 2, 2},
{3, 3, 3},
{4, 4, 4}
};
int **p;
void main()