C++ COURSE
C++ Introduction
Learn C++ programming with EDUHUB Code Hub.
C++ Introduction
C++ is a powerful general-purpose programming language created by Bjarne Stroustrup. It is an extension of the C programming language.
C++ is used for:
- Desktop Applications
- Games
- Operating Systems
- Embedded Systems
- High Performance Software
Example
C++
#include <iostream>
using namespace std;
int main(){
cout<<"Hello C++";
return 0;
}
Output
Hello World!