I'm new in Pelles C and trying to learn more about the C language, but when I try to execute any project (even the "hello world" project) it prints ***Process Returned -1***
I want to know if it's my computer or a DLL that's corrupted or missing, idk. I just downloaded the Pelles C in this PC.
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("Hello, world!\n");
return 0;
}
(Just to let you know that there's nothing bad with the project itself)