Advertisement
Guest User

Why does this compile?

a guest
Feb 21st, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2. #include "Node.h"
  3.  
  4. using namespace std;
  5. using namespace std;
  6.  
  7.  
  8. int main (int argc, char ** argv) {
  9.     std::cout << "I am printing something out here" << std::endl;
  10.     system("pause");
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement