This is my code. As can be seen, no pointer is used in it. So what can be the reason to get exit code -1073741819 (0xC0000005)?
#include <stdio.h>
int main(){
int a=10,b=5;
printf("%d",(a)*(b));
return 0;
}
User contributions licensed under CC BY-SA 3.0