I just started with programming, so please bear with me. I tried running a simple addition code in C language in Vs Code. It fails to run and no error is displayed. Below is the screenshot of what I see every time I try to run the code
Here is the code I wrote.
#include <stdio.h>
int main () {
int length, breadth;
printf("What is the length of the rectangle\n");
scanf("%d" , &length);
printf("What is the breadth of the rectangle\n");
scanf("%d", &breadth);
printf("The area of your rectangle is %d", length*breadth);
return 0;
}