Advertisement
TheWhiteFang

[C++][1]

Oct 2nd, 2014
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream> //pre-processor directive
  2.  
  3. using namespace std; //std library
  4.  
  5. int main() //it starts with the main 1st
  6. {
  7.     cout << "Hello world!" << endl; //cout- output stream object, endl- go to the next line, <<-stream insertion operator
  8.     return 0; //to tell that program ran fine
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement