What are various Input/Output functions used in C
language ? Explain output formatting. hindi me
Answers
Answered by
0
Explanation:
The printf () function is a formatted output function whereby the output of the value of all types is printed. In this function also the format (type specifier) of the value to be output is defined. int a = 50; printf ("% d", & a);
...
Formatted I/O.
Specifier Data type
%d int
%c character
%f float
%s string
Answered by
0
Explanation:
Formatted I/O.
SpecifierData type
%d- int
%c- character
%f -float
%s -string
Similar questions