Advertisement
Guest User

Code Hello World

a guest
Sep 1st, 2015
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4.  
  5. int main()
  6. {
  7. system("pause");
  8. cout << "Hello, world!" <<
  9. endl;
  10. using namespace std;
  11. return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement