Skip to content

Commit

Permalink
modified file names and reorganized directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
nihalxkumar committed Mar 12, 2024
1 parent 1c3c570 commit df239a8
Show file tree
Hide file tree
Showing 19 changed files with 33 additions and 30 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ Control Structures are of 3 types:
- The statements are executed in the order they appear.
- Conditional
- The statements are executed based on a condition.
- [If-else](./Control_Statements_If-else.md)
- [Switch](./Control_Statements_Switch.md)
- [If-else](./If-else.md)
- [Switch](./Switch.md)
- [Break and Continue](./Break-Continue.md)
- [Goto](./Goto.md)
- Iterative
- [Loops](./Control_Statements_Loops.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ In the expression `z = x + y`, `z`, `x`, and `y` are operands, while `=` and `+`

## Operators on basis of functions

1. [Arithmetic](Operators_Arithmetic.md)
2. [Assignment](Operators_Assignment.md)
3. [Relational](Operators_Relational.md)
4. [Logical](Operators_Logical.md)
5. [Increment](Operators_Increment.md)
6. [Decrement](Operators_Decrement.md)
7. [Shorthand](Operators_Shorthand.md)
8. [Ternary](Operators_Ternary)
9. [Size of operator](Operators_Sizeof.md)
10. [Miscellaneous](Operators_Misc)
1. [Arithmetic](./Arithmetic.md)
2. [Assignment](./Assignment.md)
3. [Relational](./Relational.md)
4. [Logical](./Logical.md)
5. [Increment](./Increment.md)
6. [Decrement](./Decrement.md)
7. [Shorthand](./Shorthand.md)
8. [Ternary](./Ternary)
9. [Size of operator](./Sizeof.md)
10. [Miscellaneous](./Misc)

### General order of Precedence from high to low:

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
37 changes: 19 additions & 18 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,26 @@
- [History of Programming Languages in context of C](./Learning-C/History.md)
- [Variables](./Learning-C/Vairables.md)
- [Datatypes](./Learning-C/Datatypes.md)
- [Operators](./Learning-C/Operators.md)
- [Arithmetic](./Learning-C/Operators_Arithmetic.md)
- [Assignment](./Learning-C/Operators_Assignment.md)
- [Relational](./Learning-C/Operators_Relational.md)
- [Logical](./Learning-C/Operators_Logical.md)
- [Increment](./Learning-C/Operators_Increment.md)
- [Decrement](./Learning-C/Operators_Decrement.md)
- [Shorthand](./Learning-C/Operators_Shorthand.md)
- [Ternary](./Learning-C/Operators_Ternary.md)
- [Size of operator](./Learning-C/Operators_Sizeof.md)
- [Miscellaneous](./Learning-C/Operators_Misc.md)
- [Operators](./Learning-C/Operators/Operators.md)
- [Arithmetic](./Learning-C/Operators/Arithmetic.md)
- [Assignment](./Learning-C/Operators/Assignment.md)
- [Relational](./Learning-C/Operators/Relational.md)
- [Logical](./Learning-C/Operators/Logical.md)
- [Increment](./Learning-C/Operators/Increment.md)
- [Decrement](./Learning-C/Operators/Decrement.md)
- [Shorthand](./Learning-C/Operators/Shorthand.md)
- [Ternary](./Learning-C/Operators/Ternary.md)
- [Size of operator](./Learning-C/Operators/Sizeof.md)
- [Miscellaneous](./Learning-C/Operators/Misc.md)
- [Input and Output](./Learning-C/Input_Output.md)
- [Control Statements](./Learning-C/Control_Statements.md)
- [If-else](./Learning-C/Control_Statements_If-else.md)
- [Switch](./Learning-C/Control_Statements_Switch.md)
- [Loops](./Learning-C/Control_Statements_Loops.md)
- [Break and Continue](./Learning-C/Break_Continue.md)
- [Goto](./Learning-C/Control_Statements_Goto.md)
- [Patterns](./Learning-C/Control_Statements_Patterns.md)
- [Control Statements](./Learning-C/Control_Statements/Control_Statements.md)
- [If-else](./Learning-C/Control_Statements/If-else.md)
- [Switch](./Learning-C/Control_Statements/Switch.md)
- [Loops](./Learning-C/Control_Statements/Loops.md)
- [Break and Continue](./Learning-C/Control_Statements/Break-Continue.md)
- [Goto](./Learning-C/Control_Statements/Goto.md)
- [Patterns](./Learning-C/Patterns.md)
- [Arrays](./Learning-C/Arrays/2D-Arrays.md)
- [Acknowledgements](./Learning-C/Acknowledgements.md)

---
Expand Down

0 comments on commit df239a8

Please sign in to comment.