Advertisement
DarkAtom77

Hello world C++91, C++98, C++03, C++11, C++14, C++17

May 27th, 2020
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. // Hello world program
  2. /* Languages:
  3.     - C++91 ("The C++ Programming Language, Second Edition", by Bjarne Stroustrup, 1991)
  4.     - C++98 (ISO/IEC 14882:1998)
  5.     - C++03 (ISO/IEC 14882:2003)
  6.     - C++11 (ISO/IEC 14882:2011)
  7.     - C++14 (ISO/IEC 14882:2014)
  8.     - C++17 (ISO/IEC 14882:2017)
  9. */
  10.  
  11. #include <iostream>
  12.  
  13. int main()
  14. {
  15.     std::cout << "Hello world!" << std::endl;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement