23/09/2025
Basic Terminology in C Language for Beginners 💻
Start your C programming journey with these must-know basics! From characters to functions, understand all key terms in one go. 🚀
1️⃣ Character Set: Letters, digits & symbols (A-Z, a-z, 0-9, +, -, { }).
2️⃣ Tokens: Smallest building blocks like keywords, identifiers, constants, strings, operators & special symbols.
3️⃣ Keywords: Reserved words (int, if, for, while).
4️⃣ Identifiers: Names for variables, functions, arrays (e.g., total, sum).
5️⃣ Variables: Named storage for data (int age = 25;).
6️⃣ Constants: Fixed values (const float PI = 3.14;).
7️⃣ Data Types: int, float, char, double.
8️⃣ Operators: +, -, *, /, %.
9️⃣ Statements: Instructions like printf("Hello World");.
🔟 Functions: Code blocks performing tasks (main() is starting point).