Arjun Suresh (talk | contribs) |
Arjun Suresh (talk | contribs) |
||
Line 12: | Line 12: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | Invalid memory access | |
<disqus/> | <disqus/> | ||
[[Category:Coding Questions]] | [[Category:Coding Questions]] |
<syntaxhighlight lang="c">
int main() {
int *a; *a=5; printf("%d",a);
return 0;
}
</syntaxhighlight>
Invalid memory accessblog comments powered by Disqus
<syntaxhighlight lang="c">
int main() {
int *a; *a=5; printf("%d",a);
return 0;
}
</syntaxhighlight>