From 1d47b1fb7bb34a908b7af83a525ad92e6b275148 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Mon, 5 Jun 2023 20:47:54 +0100 Subject: [PATCH] chore: add resource link to cpp >> introduction:what-is-cpp --- .../roadmaps/cpp/content/100-introduction/100-what-is-cpp.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/cpp/content/100-introduction/100-what-is-cpp.md b/src/data/roadmaps/cpp/content/100-introduction/100-what-is-cpp.md index c2d6694eb..2bb85a815 100644 --- a/src/data/roadmaps/cpp/content/100-introduction/100-what-is-cpp.md +++ b/src/data/roadmaps/cpp/content/100-introduction/100-what-is-cpp.md @@ -1,4 +1,5 @@ # What is C++? + C++ is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language. It was first introduced in 1985 and provides object-oriented features like classes and inheritance. C++ is widely used in various applications like game development, system programming, embedded systems, and high-performance computing. C++ is a statically-typed language, meaning that the type of a variable is determined during compilation, and has an extensive library called the C++ Standard Library, which provides a rich set of functions, algorithms, and data structures for various tasks. @@ -42,4 +43,6 @@ int main() { } ``` -In the above program, we define a simple function `add` and a class `Calculator` with a member function `multiply`. The `main` function demonstrates how to use these to perform basic arithmetic. \ No newline at end of file +In the above program, we define a simple function `add` and a class `Calculator` with a member function `multiply`. The `main` function demonstrates how to use these to perform basic arithmetic. + +- [C++ Tutorial for Beginners - Full Course](https://youtu.be/vlnpwxzdw4y) \ No newline at end of file