Module 1

C++ Language Fundamentals

Lesson 1: Introduction to C++

C++ is a cross-platform language created by Bjarne Stroustrup as an extension of the C language.

C++
#include <iostream>

int main() {
    std::cout << "Hello, Master Coding C++!" << std::endl;
    return 0;
}