Line 12: Line 12:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
+
Invalid memory access
 
<disqus/>
 
<disqus/>
  
 
[[Category:Coding Questions]]
 
[[Category:Coding Questions]]

Revision as of 07:27, 8 December 2013

<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>


blog comments powered by Disqus