Erythro/tests/arrays1
2020-11-19 02:31:40 +00:00

10 lines
115 B
Plaintext

int a;
int b[25];
int :: main() {
b[3] = 12;
a = b[3];
PrintInteger(a);
PrintInteger(b[5]);
return(0);
}