📅  最后修改于: 2022-03-11 15:04:40.028000             🧑  作者: Mango
//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);