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