Hello everyone i started programming in c very recently however ,since today everytime i try to compile a program how simple it may be codeblocks crashes and i get this info in CMD Process returned -1073741819 (0xC0000005)
Exemple :
Code:int main() { int m,n,a; do { printf("enter the value of m \n",m); scanf("%d",&m); printf("enter the value of n \n",n); scanf("%d",&n); printf("enter the value of a \n",a); scanf("%d",&a); } while (m<1 || n<1 || a<1 ); }