home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.5 / Group16 / Hello.cpp next >
C/C++ Source or Header  |  1999-06-02  |  321b  |  15 lines

  1. #include<iostream.h>
  2. int main() 
  3. { char quit; 
  4. while (quit != 'q') 
  5. cout<<"Hello ! This is a console app."<<endl;
  6. cout<<"To create a console, go to Project Options and uncheck"<<endl;
  7. cout<<"\'Do not create a console app\' check box."<<endl;
  8. cout<<"Press q to quit "<<endl; 
  9. cin>>quit; 
  10. return 0; 
  11. }
  12.  
  13.