C Programming in One Shot - Important Points (Hinglish)
1. Introduction to C Programming:
- C ek general-purpose, procedural programming language hai.
- Yeh low-level memory access aur simple syntax ke liye popular hai.
2. Variables and Data Types:
- Variables ko data store karne ke liye use kiya jata hai.
- Common data types: int, float, char, double.
3. Operators:
- Arithmetic Operators: +, -, *, /, %
- Logical Operators: &&, ||, !
- Relational Operators: ==, !=, >, <, >=, <=
4. Conditional Statements:
- if, else if, else: Decision making ke liye use hote hain.
- switch-case: Multiple conditions ke liye.
5. Loops:
- for loop: Fixed number of iterations ke liye.
- while loop: Jab condition true ho tab tak chalta hai.
- do-while loop: Kam se kam ek baar execute hota hai.
6. Functions:
- Functions ek specific task perform karte hain.
- Types: Built-in functions (e.g., printf), User-defined functions.
7. Pointers:
- Pointers memory address store karte hain.
- Important for dynamic memory allocation.
8. Arrays:
- Arrays similar type ke elements store karte hain.
- Types: 1D Array, 2D Array.
9. Structures and Unions:
- Structure: Multiple variables ko group karne ke liye.
- Union: Memory ko efficiently use karne ke liye.
10. File Handling:
- File me data read/write karna.
- Modes: r, w, a, rb, wb.
Yeh points C Programming ki basic understanding ke liye kaafi helpful hain.
Aap inhe samajhne ke baad practice zaroor karein!