
December 9th, 2012, 03:12 PM
|
|
Registered User
|
|
Join Date: Dec 2012
Posts: 1
Time spent in forums: 23 m 34 sec
Reputation Power: 0
|
|
|
"source file not compiled"
Hello guys,
I'm using dev c++ (4.9.9.2) to write and compile c programs. Recently, I bought a new laptop with build-in windows 8, and I couldn't compile any program from it.
Here's my very simple program that I've tried to compile:
Code:
#include <stdio.h>
int main (void)
{
printf ("good");
getch ();
return 0;
}
And here's the warning message :
I've tried some solutions and searched in the internet for solutions but I didn't find any.
Is there a way to compile with windows 8 ?
|