You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
Templates used on this page:
Return to Unallocated Memory Reference.
<syntaxhighlight lang="c">
int main() {
int *a;
*a=5;
printf("%d",a);
return 0;
}
</syntaxhighlight>