First time in C++ ....!!
Using Code::Block 8.02, My O/S Windows XP Professional
Created the following file :-
#include <condefs.h>
#include<isostream.h>
#include<conio.h>
pragma hdrstop
int main(int argc, char **argv)
{
cout << "Hello World!" << end1;
cont << end1 << "101 Press any key to continue...";
getch();
return 0;
}
1. Saved as hello.cpp
2. Clicked 'Build' then ''Run' tried ('Build & Run') - on the upper lest menu bar.
nothing happens.....!!! What do I need to do? File name is hello.cpp (in Windows XP o/s) is correct?
First time in C++ need help...