compilers-lab1/test2

8 lines
91 B
Text
Raw Permalink Normal View History

2025-03-26 10:37:08 +08:00
int main()
{
float a[10,2];
int i;
a[5,3] = 1.5;
if (a[1][2] == 0) i = 1 else i = 0;
}