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++98. As of C++98, the language is completely compatible with C and adds some new constructs like classes, templates, and exception handling.
|
Hello World[]
#include <iostream>
int main(void)
{
std::cout << "Hello World!" << std::endl;
return 0;
}
C++ articles[]
Wikibooks[]
- C++ Language
- C++ Programming
- More C++ Idioms
- Optimizing C++
- Understanding C++
- C++ Programming As A Set Of Problems