Compilateur/Fichiers_Tests/progC
2021-04-12 10:17:46 +02:00

6 lines
62 B
Text

int main(){
int b[3];
int a;
a = b[1];
int * c = &b[2];
}