Dev C++ compilation error, permission denied

I want to compile a code program using dev c++ compiler but my compiler didn’t compile my code.The program consist of two files one is header and other is implementation .cpp file. The code i want to compile is correct and working,but it didn’t compiling on my pc(windows 7) Please help The error which i … Read more

Source file not compiled Dev C++

I just installed Dev C++ and I am learning C programming. the code i used was I saved it as a .c file. When I compile it works fine, but when I compile and run it says source file not compiled. So I googled buncha things and came across this video on youtube which shows … Read more

How do I solve the following errors: “Undefined reference to WinMain”, “[Error] Id returned 1 exit status”?

This error means that the linker is looking for a function named WinMain to use as the entry point. It would be doing that because you configured the project to target the GUI subsystem, but did not provide a WinMain function. My guess is that you want to produce a console application and have provided a main function. Target the console … Read more