answersLogoWhite

0

Formatted input and output functions in programming languages allow for specific formatting options to be applied to the data being read from or written to the console. These functions enable the programmer to control the appearance of the data, such as specifying the number of decimal places when outputting a floating-point number. On the other hand, unformatted input and output functions simply read or write data without any specific formatting instructions, resulting in a more basic representation of the data on the console. The choice between formatted and unformatted functions depends on the desired level of control over the appearance of the data being processed.

User Avatar

ProfBot

4mo ago

Still curious? Ask our experts.

Chat with our AI personalities

JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan
EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao
More answers

Formatted I/P functions: These functions allow us to supply the input in a fixed format and let us obtain the output in the specified form. Formatted output converts the internal binary representation of the data to ASCII characters which are written to the output file. Formatted input reads characters from the input file and converts them to internal form.

Format specifications

Data type

Integer

short signed

short unsigned

long signed

long unsigned

unsigned hexadecimal

unsigned octal

%d or %l

%u

%ld

%lu

%x

%o

Real

float

double

%f

%lf

Character

signed character

unsigned character

%c

%c

String

%s

Unformatted I/O functions: There are several standard library functions available under this category-those that can deal with a string of characters. Unformatted Input/Output is the most basic form of input/output. Unformatted input/output transfers the internal binary representation of the data directly between memory and the file

User Avatar

Wiki User

14y ago
User Avatar

Add your answer:

Earn +20 pts
Q: Q2 Differentiate between formatted and unformatted you input and output functions?
Write your answer...
Submit
Still have questions?
magnify glass
imp