Syntax, Operators, Control Flow & Arrays 语法、运算符、控制流与数组
Integers (whole numbers)整数
int score = 100;
Decimal numbers小数 (双精度)
double pi = 3.14159;
Single character单个字符
char grade = 'A';
Format specifiers:格式占位符: %d (int), %lf (double), %c (char), %s (string)
⚠️ Don't forget the & (address of) operator!不要忘记 & (取地址符)!