0
, what is the meaning of 'f' in printf?
In c language.
3 ответов
+ 2
It is the main function used to print text strings in the language ... f, F, the letter f or F is used to print natural numbers that contain ... exponents in the number
+ 1
Print format:
You can format the integer you want to print.
Example:
%2d would add one space if your integer is of one digit.
0
'f' in printf stands for formatted data printing, it is used for printing with formatted values as output.