📜  格式说明符后的空格 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:40.028000             🧑  作者: Mango

代码示例1
//space before a format specifier (for example %c) will skip any number of whitespaces before it unless it is interrupted by a non whitespace character.
//example below
int a;
char c;
scanf("%d %c",&a,&b);