8 lines
96 B
Text
8 lines
96 B
Text
|
void main () {
|
||
|
int *a = alloc(8);
|
||
|
*a = 4;
|
||
|
puti(a);
|
||
|
puts(" - ");
|
||
|
puti(*a);
|
||
|
}
|