# Topic List

1. Basic Programming
   1. Program Structure, Comment, Keywords
   2. Data Type, Constant, Variable
   3. Format Specifier, Input, Output
   4. Size, Limit, Modifier
   5. Escape Sequence
   6. Formatted Input Output
2. Operators and Expressions
   1. Assignment Operator
   2. Arithmetic Operator
   3. <mark style="color:red;">Relational Operator</mark>
   4. <mark style="color:red;">Logical Operator</mark>
   5. Bit Wise Operator
   6. <mark style="color:red;">Increment, Decrement Operator</mark>
   7. Miscellaneous Operators
      1. Comma Operator (,)
      2. Sizeof Operator (sizeof)
      3. Reference/Address Operator (&)
      4. Pointer/Dereferencing Operator (\*)
      5. Membership Operator (.)
      6. Member Selection Operator ( ->)
      7. Ternary Operator (? : )
   8. <mark style="color:red;">Operator Precedence and Associativity</mark>
3. Control Flow
   1. [<mark style="color:red;">Conditional Statement</mark>](https://app.gitbook.com/s/JO8xesnYVCorD4rWK7c1/c/ch3) (truth value, if, else, else if, if else if ladder, nested if)
   2. [<mark style="color:red;">Loop</mark> ](https://app.gitbook.com/s/JO8xesnYVCorD4rWK7c1/c/ch4)(while, do while, for, nested loop)
4. [<mark style="color:red;">Function</mark>](https://app.gitbook.com/s/JO8xesnYVCorD4rWK7c1/c/ch6) <mark style="color:red;">& Recursion</mark>
   1. Variable Scope (Global, Local)
   2. Storage Classes (Auto, Extern, Static, Register)
   3. Library Function
5. [<mark style="color:red;">Array</mark>](https://app.gitbook.com/s/JO8xesnYVCorD4rWK7c1/c/ch7) <mark style="color:red;">& String</mark>
6. [<mark style="color:red;">Pointer</mark>](https://app.gitbook.com/s/JO8xesnYVCorD4rWK7c1/c/ch5), Dynamic Memory Allocation (DMA)
7. Structure, Union
8. File
9. Miscellaneous Topic
   1. Preprocessor
   2. Enumeration

<mark style="color:red;">**Red color topics require more exercise.**</mark>
