File Input Output - Study Mode
[#71] Explain the format string "%5d%s %c"
Correct Answer
(A) five characters as a decimal integer, then reads the remaining as a string and then scans the first non-whitespace character
[#72] What is the difference between %e and %g?
Correct Answer
(B) %e always formats in the format [-]m.dddddd or [-]m.dddddE[+|-]xx where no.of ds are optional and output formatting depends on the argument
[#73] Strcat() function adds null character.
Correct Answer
(B) Always
[#74] If the mode includes b after the initial letter, what does it indicates?
Correct Answer
(C) binary file
[#75] A fatal error will be generated if the format string is ended with a white space character.
Correct Answer
(A) true