home *** CD-ROM | disk | FTP | other *** search
/ Beginning C++ Through Gam…rogramming (2nd Edition) / BCGP2E.ISO / bloodshed / devcpp-4.9.9.2_setup.exe / Templates / ConsoleApp_cpp.txt < prev    next >
Text File  |  2004-11-12  |  155b  |  11 lines

  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.     system("PAUSE");
  9.     return EXIT_SUCCESS;
  10. }
  11.