Definition: C is a general-purpose, procedural programming language.
Keywords: Reserved words in C that have special meaning, such as int, return, if, etc.
Features of C: Includes simplicity, efficiency, portability, and flexibility.
Loops in C: Constructs like for, while, and do-while used to repeat a block of code.
Conditionals in C: Statements like if, else if, else, and switch used for decision making.
Elements of C: Basic components such as variables, data types, operators, and expressions.
Format Specifier: Symbols used in printf and scanf to specify data types, such as %d, %s, %f.
Header File: Files containing C declarations and macro definitions to be shared between several source files.
Why is C Called Structural: C is called structural because it allows the use of functions and control structures to create a structured and organized codebase.