High-level programming language developed
by Bjarne Stroustrup at Bell Labs. C++ adds object-oriented features to its predecessor,
C. C++ is one of the most popular programming languages for graphical applications, such as
those that run in Microsoft Windows and
Apple Macintosh environments. C++ is named after C's
incrementation operator. Below is an example of a C++ program that
prints "Hello World!".
|
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
}
|
Also see: C, C#,
High-level
language, Portable language, Programming
definitions
|
|
| Resolved | Were you able to locate the answer to your questions? |
|
|