6 lines
62 B
Text
6 lines
62 B
Text
int main(){
|
|
int b[3];
|
|
int a;
|
|
a = b[1];
|
|
int * c = &b[2];
|
|
}
|