7 lines
95 B
Text
7 lines
95 B
Text
int main(){
|
|
int * b = 4 * 5;
|
|
int ** c,d;
|
|
int ** y = &b;
|
|
* c = 1;
|
|
&b = 2;
|
|
}
|