I’m trying to run the debugge on Cursor AI with C language.
Windows 11 Ryzen 9
I have installed the GBD.
This is the code I put in :
#include <stdio.h>
int main(void)
{
int num1 = 0, num2 = 0;
int num3 = 30, num4 = 40;
printf("num1: %d, num2: %d \n", num1, num2);
num1 = 10;
num2 = 20;
printf("num1: %d, num2: %d \n", num1, num2);
printf("num3: %d, num4: %d \n", num3, num4);
return 0;
}
This is the error message I get when I run the debugger:
How can I solve this?