Answers for "what is c++"

C++
1

what is c++

C++ is a cross-platform language that can be used to create high-performance applications.

C++ was developed by Bjarne Stroustrup, as an extension to the C language.

C++ gives programmers a high level of control over system resources and memory.
Posted by: Guest on May-20-2021
6

C++

C++ is a general-purpose programming language created by Bjarne 
Stroustrup as an extension of the C programming language, or 
"C with Classes".

//as you can also see to your right ---------------------->

C++ still qualifies as a high-level languge, yet the rise of 
languages like Ruby and Java have given capabilities that sway
people's opinion towards what is and is not "high-level". 

Yet high-level simply means it's farther from machine code and closer 
to human-readable form. Hence the need for a compiler/interpreter.

So don't get too worked up about granular specifics.
Posted by: Guest on May-20-2020
1

c++

#include <iostream>

int main() {
	std::cout << "Hello, world!" << std::endl;
	return 0;
}
Posted by: Guest on July-16-2020
0

what is c++

C++ is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes".
Posted by: Guest on January-09-2021

Browse Popular Code Answers by Language