Eclipse C/C++ Compilation faile -
hi i'm new eclipse ide c/c++ developer(i'm using eclipse helios c/c++) i've made small program
#include<stdio.h> #include<conio.h> main() { printf("hello eclipse c c++"); }
and when trying run it, getting error "launch failed. binary not found"
though cdt c/c++ installed can body me out?
what c compiler using under covers there? people include conio.h
invariably using turbo c - don't know why, it's antiquated , can better free compiler (in terms of both cost and freedom) in gcc
(should pretty-well standard on linux distro, or hands on mingw if you're running under windows).
try following instead:
#include <stdio.h> int main (void) { printf("hello eclipse c/c++\n"); return 0; }
Comments
Post a Comment