Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added sidelabels for the programming-fundamentals #1812

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/programming-fundamentals/Arrays.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: Arrays
title: Introduction to Arrays fundamentals
sidebar_label: Programming fundamentals
sidebar_label: Arrays
sidebar_position: 1
description: "Information About Arrays in progamming"
tags: [arrays,fundamentals]
Expand Down
2 changes: 1 addition & 1 deletion docs/programming-fundamentals/Conditionals.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: Conditionals
title: Introduction to conditinols fundamentals
sidebar_label: Programming fundamentals
sidebar_label: Conditionals
sidebar_position: 2
description: "Information About conditionals in progamming"
tags: [conditionals,fundamentals]
Expand Down
2 changes: 1 addition & 1 deletion docs/programming-fundamentals/Data_Structures.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: Data Structures
title: Introduction to Data Structures fundamentals
sidebar_label: Programming fundamentals
sidebar_label: Data Structures
sidebar_position: 3
description: "Information About Data structures in progamming"
tags: [Data structures,fundamentals]
Expand Down
2 changes: 1 addition & 1 deletion docs/programming-fundamentals/Loops.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: Loops
title: Introduction to loops fundamentals
sidebar_label: Programming fundamentals
sidebar_label: Loops
sidebar_position: 5
description: "Information About loops in progamming"
tags: [loops,fundamentals]
Expand Down
2 changes: 1 addition & 1 deletion docs/programming-fundamentals/Variables.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: Variables
title: Introduction to variables fundamentals
sidebar_label: Programming fundamentals
sidebar_label: Variables
sidebar_position: 6
description: "Information About variables in progamming"
tags: [variables,fundamentals]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
---
id: Functions
id: functions
title: Introduction to functions fundamentals
sidebar_label: Programming fundamentals
sidebar_label: Functions
sidebar_position: 4
description: "Information About functions in progamming"
tags: [functions,fundamentals]
description: "Information About functions in programming"
tags: [functions, fundamentals]
---


# Functions in C

## What are Functions?
Functions in C are self-contained blocks of code that perform a specific task. They allow for code reuse, modular programming, and improve the clarity of the code.

Expand Down