Space After Format Specifiers In C

[Solved] Space After Format Specifiers In C | Lua - Code Explorer | yomemimo.com
Question : space after format specifiers in c

Answered by : disgusted-dunlin-koymhsmet51o

//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);

Source : | Last Update : Mon, 29 Nov 21

Answers related to space after format specifiers in c

Code Explorer Popular Question For Lua