m new to dev C++ ... have been using turbo C++ before........ 
could u also highlight the syntax differences plz..

this is the error i get when i try compiling the default program of 
hello world given in d compiler 
 
 
 
Compiler: Default compiler 
Building Makefile: "C:\Dev-Cpp\Makefile.win" 
Executing make... 
make.exe -f "C:\Dev-Cpp\Makefile.win" all 
g++.exe -c Untitled1.cpp -o Untitled1.o -
I"lib/gcc/mingw32/3.4.2/include" -I"include/c++/3.4.2/backward" -
I"include/c++/3.4.2/mingw32" -I"include/c++/3.4.2" -I"include" -ansi -
pedantic -Wall 
 
windres.exe -i Project1_private.rc --input-format=rc -o 
Project1_private.res -O coff  
 
gcc: installation problem, cannot exec `cc1': No such file or 
directory 
 
windres.exe: no resources 
 
make.exe: *** [Project1_private.res] Error 1 
 
Execution terminated 


and when i compile this program 
 
#include <conio.h> 
#include <stdio.h> 
int main() 
{ 
printf("Greetings Earthlings.\n"); 
printf("All your base are belong to us!\n"); 
getch(); 
} 
i get this error 
 
 
C:\Dev-Cpp\Makefile.win [Build Error] [Untitled2.o] Error 1 

 



Reply via email to