⚙️ Welcome to C++ Course!
Are you ready to elevate your c++ skills? Join our comprehensive course, started in 2021, where you'll explore various topics through video lectures, notes, slides, tutorials, and quizzes curated from leading universities and organizations.
Access resources like GitHub repositories, Reddit groups, and our YouTube channel—all in one place. Contribute to the learning community by sharing valuable links and resources!Remember: Learning is a lifelong journey. Keep learning, creating, and sharing! 💻✌️
Start Learning Now!🚫 Guest access is limited. To unlock full course content, please enroll in the course.
1-Introduction
What is C++?
Why use C++?
C++ is an intermediate-level language that contains high and low-level language features. C++ langue is updated three times (2011, 2014, and 2017 to C++11, C++14, and C++17) and was developed by Bjarne Stroustrup.- We used C++ because :
- it is the most popular programming language.
- it is an object-oriented and procedural programming language.
- it is closed to C# and java.
2-Hello World
Hellow Word program is the first and simple program of C++ and contains all component that used in all program
# include <iostream>
it is a header file library that allows the input and output object ( cout,Cin) to work.