Introduction of C++ - History of C++

 


Introduction of C++:

C++ is a general purpose programming language created by Bjarne Stroustrup as an extension of the C programming language or "C with Classes".

History of C++:

·      Created in the early 1980s by Bjarne Stroustrup

·      C++ is standardized as ISO/IEC 14882

·      C++98 First standard version of C++.

·      C++03  C++11 (ISO/IEC 14882:2011): Second standard version of C++. Informally called C++0x, as it was expected to finalize in 200x but was not released until 2011. It adds some new features to the language

·      C++14, C++17, C++20  C++23 the next planned standard.

    First C++ Program to print hello world

   #include<iostream> 

   using namespace std;

   int main(){

           cout<<"Hello World"<<endl;

   return 0;

   }   






 

Post a Comment

0 Comments