From b4f8c5f6d55632b3b2daddb8b2ba99e7232a7111 Mon Sep 17 00:00:00 2001 From: Saksham Gupta Date: Sun, 13 Dec 2020 12:16:09 +0530 Subject: [PATCH 1/2] added links to C++ --- programming-language-resources.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/programming-language-resources.md b/programming-language-resources.md index 957104b..fa77b47 100644 --- a/programming-language-resources.md +++ b/programming-language-resources.md @@ -12,17 +12,17 @@ - C++ - [C++ Cheat Sheet](https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/Cpp_reference.pdf) - [STL Cheat Sheet](https://github.com/jwasham/coding-interview-university/blob/master/extras/cheat%20sheets/STL%20Quick%20Reference%201.29.pdf) - - basics - - pointers - - class and object - - functions - - references - - templates + - [basics](https://www.tutorialspoint.com/cplusplus/cpp_basic_syntax.htm) + - [pointers](https://www.cprogramming.com/tutorial/lesson6.html) + - [class and object](https://www.cprogramming.com/tutorial/lesson12.html) + - [functions](https://www.cprogramming.com/tutorial/lesson4.html) + - [references](https://www.geeksforgeeks.org/references-in-c/) + - [templates](https://www.cprogramming.com/tutorial/templates.html) - compilation - - scope & linkage - - namespaces - - OOP - - STL + - [scope & linkage](https://www.learncpp.com/cpp-tutorial/scope-duration-and-linkage-summary/) + - [namespaces](https://www.tutorialspoint.com/cplusplus/cpp_namespaces.htm) + - [OOP](https://www.geeksforgeeks.org/object-oriented-programming-in-cpp/) + - [STL](https://www.hackerearth.com/practice/notes/standard-template-library/) - [functors](http://www.cprogramming.com/tutorial/functors-function-objects-in-c++.html) - [C++ at Google (video)](https://www.youtube.com/watch?v=NOCElcMcFik) - [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html) From 8661dc75cfc5689a1ce30514e177bb7ecb161bdd Mon Sep 17 00:00:00 2001 From: Saksham Gupta Date: Sun, 13 Dec 2020 13:03:25 +0530 Subject: [PATCH 2/2] updated compilation link --- programming-language-resources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programming-language-resources.md b/programming-language-resources.md index fa77b47..5329544 100644 --- a/programming-language-resources.md +++ b/programming-language-resources.md @@ -18,7 +18,7 @@ - [functions](https://www.cprogramming.com/tutorial/lesson4.html) - [references](https://www.geeksforgeeks.org/references-in-c/) - [templates](https://www.cprogramming.com/tutorial/templates.html) - - compilation + - [compilation](https://www.youtube.com/watch?v=ZTu0kf-7h08) - [scope & linkage](https://www.learncpp.com/cpp-tutorial/scope-duration-and-linkage-summary/) - [namespaces](https://www.tutorialspoint.com/cplusplus/cpp_namespaces.htm) - [OOP](https://www.geeksforgeeks.org/object-oriented-programming-in-cpp/)