Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 303 Bytes

note.md

File metadata and controls

18 lines (13 loc) · 303 Bytes

常量 字符常量 Character Constant 单引号 '}' 数字常量 枚举常量 "5" '5' 5

printf("字符串:5;\n字符:%c;\n;整数:%d;\n浮点数:%f;:",'5',5,5.5)

变量 char fred; int bob, bob2; float jimmy; double tom; 字符常量可以参与运算 printf("%c\n",'a'+1) => b