Question: C PROGRAMMING Write a printf or scanf statement for each of the following: a) Print unsigned integer 2001 right justified in a 12-digit field with
C PROGRAMMING
Write a printf or scanf statement for each of the following:
a) Print unsigned integer 2001 right justified in a 12-digit field with 6 digits.
b) Print 3.150 in a 9-digit field with preceding zeros.
// part of my answer: Printf(%09
c) Read a time of the form hh-mm-ss, storing the parts of the time in the integer variables hour, minute and second. Skip the dash (-) in the input stream. Use the assignment suppression character.
d) Read a string of the form "characters" from the standard input. Store the string in character array s. Eliminate the quotation marks from the input stream.
e) Read a time of the form hh:mm:ss, storing the parts of the time in the integer variables hour, minute and second. Skip the colons (:) in the input stream. Do not use the assignment suppression character.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
