| This article is not referenced! Please help improve this article by adding citations to reliable sources. |
The C++ programming language was incrementally developed by Bjarne Stroustrup in the early 1980s, originally as an extended C compiler named Cfront but eventually as an alternative. The language has gone under much revision and has been made standard with C++11, C++20 and C++23. While heavily based on C and maintaining high compatibility, C++ added powerful object-oriented and generic programming features like classes, templates, and exception handling.
|
Hello World
#include <iostream>
int main() {
std::cout << "Hello, World!\n";
}
C++ articles
Wikibooks
- C++ Language
- C++ Programming
- More C++ Idioms
- Optimizing C++
- Understanding C++
- C++ Programming As A Set Of Problems