Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. //Customer - main.cpp file.
  2. //Compiles successfully only on Windows systems, using Dev-C++.
  3.  
  4. #include <cstdlib>
  5. #include <iostream>
  6. #include <iomanip>
  7.  
  8. #include "customer.h"
  9.  
  10. using namespace std;
  11.  
  12. int main(int argc, char *argv[])
  13. {
  14.     Customer testing;
  15.     testing.store(
  16.     system("PAUSE");
  17.     return EXIT_SUCCESS;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement