I don't know what is wrong. since a couple of days ago my dev C++ compiler wasn't working.

I was using 4.9.8.0 and i tried to upgrade to 4.9.8.5 and when it downloaded it started giving me all these error messages like these
Code:
dev c++ 4.9.8.0 compile log






Compiler: Default compiler
Building Makefile: "C:\Documents and Settings\Owner\Desktop\Makefile.win"
Executing  make...
make.exe -f "C:\Documents and Settings\Owner\Desktop\Makefile.win" all
Execution terminated


second error:







                              /* Chapter 3 - Program 2 - DOWHILE.C */
/* This is an example of a do-while loop */

#include <stdio.h>

int main()
{
int i;

   i = 0;
   do 
   {
      printf("The value of i is now %d\n", i);
      i = i + 1;
   } while (i < 5);

   return 0;
}



/* Result of execution

The value of i is now 0
The value of i is now 1
The value of i is now 2
The value of i is now 3
The value of i is now 4 */

/* python code 

for number in range(11):
   print "The value is now %2d: " % (number)
   
*/


                              /* Chapter 3 - Program 2 - DOWHILE.C */
/* This is an example of a do-while loop */

#include <stdio.h>

int main()
{
int i;

   i = 0;
   do 
   {
      printf("The value of i is now %d\n", i);
      i = i + 1;
   } while (i < 5);

   return 0;
}



/* Result of execution

The value of i is now 0
The value of i is now 1
The value of i is now 2
The value of i is now 3
The value of i is now 4 */

/* python code 

for number in range(11):
   print "The value is now %2d: " % (number)
   
*/                              /* Chapter 3 - Program 2 - DOWHILE.C */
/* This is an example of a do-while loop */

#include <stdio.h>

int main()
{
int i;

   i = 0;
   do 
   {
      printf("The value of i is now %d\n", i);
      i = i + 1;
   } while (i < 5);

   return 0;
}



/* Result of execution

The value of i is now 0
The value of i is now 1
The value of i is now 2
The value of i is now 3
The value of i is now 4 */

/* python code 

for number in range(11):
   print "The value is now %2d: " % (number)
   
*/


gives  me: stdio.h: no such file or directory
i don't understand. I installed and ran 4.0 but when i upgraded to 4.01 it started giving me the same errors as above.

I seems to compile fine(4.9.8.5) but its like the linker doesn't handle the object code. I also gives me errors like: unable to open bin.


I am on windows xp and i did a system restore and downloaded it again, but i still go theses errors.

Please help me i am really frustrated and i need a compiler. I am a biginner in C and i like the UI of Dev. What are my other options and/or what can i do to fix this problem. pleazzzzzze!!!