Hello,
I am using Codelite compiler Version: V2.7.0.4375 (latest) and trying to compile a simple hello world program:
Code:
#include <stdio.h>

int main(int argc, char **argv)
{
	cout << "Hello World\n";
	return 0;
}
When I compile this program I am getting error:
"'cout' was not declared in this scope".
Anybody has any idea about this ?