I am getting back into programming downloaded Pelles C ran a simple code and came up with a strange error and can't seem to find anywhere how to fix it does anyone know what I can do to fix it. The error is "POLINK: error: Unresolved external symbol '__penter'."
the program code is as follows.
#include<stdio.h>
int main()
{
int a;
int b;
int c;
printf("Enter value for a \n");
scanf("%d",&a);
printf("Enter value for b \n");
scanf("%d",&b);
c=a+b;
printf("The value of c is %d \n",c);
return 0;
}
I have rewritten it many times and can't seem to figure out how to fix this error any help would be appreciated.