Computer Science, asked by 7067207750, 1 month ago

What are various Input/Output functions used in C
language ? Explain output formatting. hindi me

Answers

Answered by vishalbanjare14
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 vindhyavasinimzp76
0

Explanation:

Formatted I/O.

SpecifierData type

%d- int

%c- character

%f -float

%s -string

Similar questions