+ 2
Percentage Signs in C and a single {.
I donât understand why there is always a single bracket of that shape alone in the code after the first or second line. I also donât get what %2 and %d means please help the Solo Learn explanation confused me.
1 Answer
+ 2
Any bracket that is opened will be closed or you get syntax error
%d %f etc. specifies what kind of data type the variable is.
%2d is used for reserving space of 2 characters while printing
Eg
printf("%3d",10);
printf("%3d",100);
10
100