I was trying my first c program in eclipse. Now after installing the c/c++ plugin i have c/c++ perspective.
But when I tried to run this simple C code, a window pops up titled "Application
Launcher", and it contains the following message: "Launch failed.Binary not found".
Please let me know if the mistake in the c code I wrote or in any something else.
C code:
#include <iostream.h>
main() {
cout<<"Hello world!\n";
}