[go: up one dir, main page]

0% found this document useful (0 votes)
11 views1 page

C++ Programming Basics and Example

C++ is a programming language that is a superset of C with additional features, it is a middle-level, statically typed, compiled language that supports procedural, object-oriented and generic programming as demonstrated by a simple Hello World program.

Uploaded by

Prasad Loyal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

C++ Programming Basics and Example

C++ is a programming language that is a superset of C with additional features, it is a middle-level, statically typed, compiled language that supports procedural, object-oriented and generic programming as demonstrated by a simple Hello World program.

Uploaded by

Prasad Loyal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

jpwebdevelopers.

in

C++
C++ is a computer programming language that is a superset of C wherein
additional features are made in the C language.

C++ is a middle-level programming language. C++ is a statically typed,


compiled, general purpose, case -sensitive, free-form programming language that
supports procedural, object-oriented, and generic programming.
C++ Program

#include <iostream>

int main() {
std::cout << "Hello World!";
return 0;
}

Output

Hello World!

jpwedevelopers.in

You might also like