I am new in programing C and I want to start with Pelles C.
I wrote following to the IDE but I couldn't run the program
#include<stdio.h>
int main()
{
printf("Hello");
return 0;
}
Is it a wrong in my program? or I don't know how to use Pelles C?
Please help me.
Also I appreciate you, if you introduce me a text or resorce for begining with C programing that is simple.
Thanks
You have to start a project... Pelles C will not compile code outside of a project.
File -> New -> Project -> Win32 Console Project
-or-
File -> New -> Project -> Win64 Console Project
Give your project a name ... the wizard will create folder for you...
Now type in your code... and click the Run button on the toolbar.