Kansor - 2013-11-25

Hi, I have tried many possible method in the web, but i still fail to compile this code in the dev cpp. i try a simple hello world cpp program. Btw, there is #include iostream in the code.

My code:

include <iostream>

using namespace std;

int main ()
{
cout << "Hello World!";
return 0;
}

Here is the compiler log:
Compiler: Default compiler
Building Makefile: "C:\Users\user\Desktop\test code\Makefile.win"
Finding dependencies for file: C:\Users\user\Desktop\test code\saja.cpp
Executing make...
C:\Dev-Cpp\bin\make.exe -f "C:\Users\user\Desktop\test code\Makefile.win" all
C:\Dev-Cpp\bin\g++.exe -c saja.cpp -o saja.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include"

/usr/bin/sh: C:Dev-Cppbing++.exe: command not found
C:\Dev-Cpp\bin\make.exe: *** [saja.o] Error 127

Please help me.

Execution terminated