Skip to content

Commit dcddd0a

Browse files
committed
cc u
1 parent 736997b commit dcddd0a

26 files changed

+26
-26
lines changed

01. How C++ Works.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Compilation", "Linking", "Build Process", "Preprocessing"]
77
description: "An overview of the C++ build process, covering preprocessing, compilation into object code, and linking to create an executable."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# How C++ Works - [▶️YouTube](https://www.youtube.com/watch?v=SfGuIVzE_Os&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=6)

02. How the C++ Compiler Works.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Compiler", "Preprocessing", "Assembly", "Optimization", "Visual Studio", "Build Process"]
77
description: "A breakdown of the C++ compiler's stages, focusing on preprocessing directives, generating assembly, optimization, and handling compiler options/errors in Visual Studio."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# How C++ Compiler Works - [▶️YouTube](https://www.youtube.com/watch?v=3tIqpEmWMLI&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=6)

03.How the C++ Linker Works.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Linker", "Linking", "Build Process", "Object Files", "Symbols", "LNK2019", "LNK1169"]
77
description: "Explains the role of the C++ linker in combining object files, resolving symbols, and common errors like LNK2019 (unresolved external) and LNK1169 (multiple definitions)."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# How the C++ Linker Works - [▶️YouTube](https://www.youtube.com/watch?v=H4s55GgAg0I)

04.Variables in C++.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Variables", "Data Types", "int", "float", "double", "char", "bool", "Memory"]
77
description: "An explanation of variables in C++, covering basic data types (int, float, double, char, bool), their sizes in memory, and usage examples."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
## Variables in Programming

05.Functions in C++.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Functions", "Parameters", "Return Values", "Code Reusability", "Call Stack", "Inline Functions"]
77
description: "Explains C++ functions, including syntax, parameters, return values, avoiding code duplication, call overhead, and best practices."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# Functions in C++ - [▶️YouTube](https://www.youtube.com/watch?v=V9zuox47zr0&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=9)

06.Header Files in C++ .md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Header Files", "Declarations", "Definitions", "Include Guards", "#pragma once", "#include", "Build Process", "Linking"]
77
description: "Explains the purpose and use of header files in C++ for declarations, include guards (#pragma once), include directives, and avoiding common errors like circular dependencies."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# C++ Header Files - [▶️ Full Playlist](https://www.youtube.com/watch?v=9RJTQmK0YPI&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=10)

07.How to DEBUG C++ in VISUAL STUDIO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Debugging", "Visual Studio", "Breakpoints", "Stepping", "Memory Inspection", "Watch Window"]
77
description: "A guide to debugging C++ code in Visual Studio, covering breakpoints, stepping through code (F10, F11, Shift+F11), and using debugger windows like Autos, Locals, Watch, and Memory."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# Debugging C++ in Visual Studio - [▶️ Playlist](https://www.youtube.com/watch?v=0ebzPwixrJA&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=10)

08.CONDITIONS and BRANCHES in C++ .md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Conditional Statements", "if", "else", "Branching", "Control Flow", "Boolean Logic"]
77
description: "Explains conditional statements (if, else if, else) and branching in C++ for controlling program flow based on boolean logic and evaluations."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# C++ Conditions and Branches (if statements)

09.Loops in C++.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Loops", "for", "while", "do-while", "Iteration", "Control Flow"]
77
description: "Covers the different types of loops in C++ (for, while, do-while), their syntax, usage, and key differences for controlling repetitive execution."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# 🔄 Loops in C++ (for, while, do-while) - Complete Notes

10.Control Flow in C++.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories: ["C++"]
66
tags: ["Control Flow", "continue", "break", "return", "Loops", "Functions"]
77
description: "Explains C++ control flow statements: continue (skip loop iteration), break (exit loop/switch), and return (exit function)."
88
author: "Vaibhav Deokar"
9-
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
9+
image: "/_cpp_notes/img-data/cpp_thumbnail.jpg"
1010
published: true
1111
---
1212
# Control Flow in C++ (continue, break, return)

0 commit comments

Comments
 (0)