Made a simple program and got exit code -1073741819 error despite not having pointers in it

-3

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;
}
c
pointers
exit-code
asked on Stack Overflow Sep 2, 2020 by Braj Kishan Singh • edited Sep 2, 2020 by Jonathan Leffler

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0