CS201 - Avoiding Warning Message at compile time
Wednesday, October 20, 2010 Posted In CS and IT Edit ThisAt times when you compile a program you see a warning message at the end of compiler screen. It is only a warning message and not an error so it has not as such critical impact on your program. However in order to avoid this warning message, You are recommended to use(using namespace std;)statement at the start of the program.
#include
{
cout<<"Welcome to VUsolutions"<
getche();
}