0
What this. (%d) means in c ?
2 Answers
0
%d is used in functions like printf and scanf to denote base 10 (decimal) intger input/output.
0
%d refers to an integer (or decimal) for example %s refers to a string. %c refers to a char. %d is used to print some number to standard output:
https://code.sololearn.com/c63jW27320s0/?ref=app
Hope this helps! đ