Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

An important component to understanding the C programming language is having a proper understanding of the formatting of the input and output streams. Input operations

An important component to understanding the C programming language is having a proper understanding of the formatting of the input and output streams. Input operations involve data that flows from the input device such as a keyboard or hard drive to the main memory. Output operations involve data that flows from main memory out to a device such as the screen, a printer, or the hard drive. How you want your output displayed or formatted on the screen depends on the conversion specifiers you use in your program.

Consider the following four programs:

Program A

#include

int main(void)

{

puts(Using precision for floating-point numbers);

double f = 123.94536; // initialize double f

printf(\t%.3f \t%.3e \t%.3g ,f,f,f);

}

Program B

#include

int main(void)

{

puts(Using precision for integers);

int i = 873; // initialize int i

printf(\t%.4d \t%.9d ,i,i);

}

Program C

#include

int main(void)

{

puts(Using precision for strings);

char s [] = Happy Birthday; // initialize char array s

printf(\t%.11s ,s);

}

Program D

#include

int main(void)

{

puts(String output using character array);

char h [] = Happy Birthday; // initialize char array h

for (size_t I = 0; h[i] != \0; ++i

{

Printf(\t%c , h[i]);

}

printf( );

}

Select one of the four programs above, type the code into Visual Studio, and run it. Explain why the output is being formatted the way it is. Now adjust the code so that the output displays differently and explain what you changed in the code to make it look different. Make sure to upload your revised code into the discussion.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David Kroenke, David J. Auer

3rd Edition

0131986252, 978-0131986251

More Books

Students also viewed these Databases questions

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago