Cpp Tutorial
# C++ Tutorial

C++ is a high-level language that was designed and developed by Bjarne Stroustrup at Bell Labs starting in 1979. C++ is an object-oriented programming language that further extends and improves upon the C language. C++ can run on multiple platforms, such as Windows, MAC operating systems, and various versions of UNIX.
This tutorial explains the C++ programming language in an easy-to-understand manner.
**[Start Learning C++ Programming Now!](#)*## Who Should Read This Tutorial?
This tutorial is specifically designed for beginners to help them understand fundamental to advanced concepts related to the C++ programming language.
## Prerequisites for Reading This Tutorial:
Before you start practicing the various examples given in this tutorial, you need to have a basic understanding of computer programs and computer programming languages.
## Compiling/Executing a C++ Program
## Example
#includeusing namespace std; int main(){cout<<"Hello, world!"<<endl; return 0; }
[Run Example Β»](#)
You can use "n" instead of endl in the code above.
## Example
#includeusing namespace std; int main(){cout<<"Hello, world!"<<"n"; return 0; }
[C++ Introduction](#)[](#)
YouTip