0
what is the difference in it..?
what is the difference between "%c" & " %c"...in C program ?
3 Answers
+ 3
We can put a space before a conversion specifier to anticipate an event where previous input might have left a line break '\n' character in the input stream.
We can also put a space after a conversion specifier to prevent a line break '\n' character from being stored into the input stream.
This habit may become useful because a leftover line break '\n' in the inout stream can fail successive input operations.
Specify the relevant language name in the tags â
https://code.sololearn.com/W3uiji9X28C1/?ref=app
+ 2
In space
0
C program..