Variables, Types & Operators
✓ Completed
C is statically typed. Every variable must be declared with an explicit type before use. We cover int, float, double, char, and the most common arithmetic and bitwise operators.
c
int age = 22;
float gpa = 3.7f;
char grade = 'A';
printf("%d %f %c\n", age, gpa, grade);