Introduction to C++
What is C++?
C++ is a general-purpose programming language created by Bjarne Stroustrup...
First C++ Program
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}
This program demonstrates:
#include
directive for headersmain()
function as entry pointcout
for output