Posts

Showing posts from 2020

C++ programming

  C++ programming C++  is a middle-level programming language developed by Bjarne Stroustrup starting in 1979 at Bell Labs.  C++  runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. This  C++  tutorial adopts a simple and practical approach to describe the concepts of  C++  for beginners to advanded software engineers.   It can be used to develop operating systems, browsers, games, and so on. Hello World using C++ #include <iostream> using namespace std ; // main() is where program execution begins. int main () { cout << "Hello World" ; // prints Hello World return 0 ; } Applications of C++ Programming As mentioned before, C++ is one of the most widely used programming languages. It has it's presence in almost every area of software development. I'm going to list few of them here: Application Software Development - C++ programming has been used in developing almost all the major Operating Systems