<syntaxhighlight lang="c">

  1. include<stdio.h>

int main() {

int *a;
*a=5;
printf("%d",a);
return 0;

}

</syntaxhighlight>

Invalid memory access
blog comments powered by Disqus

<syntaxhighlight lang="c">

  1. include<stdio.h>

int main() {

int *a;
*a=5;
printf("%d",a);
return 0;

}

</syntaxhighlight>

Invalid memory access
blog comments powered by Disqus