adplus-dvertising
frame-decoration

Question

What does this statement printf(“%10s”, state); means?

a.

10 spaces before the string state is printed

b.

Print empty spaces if the string state is less than 10 characters

c.

Print the last 10 characters of the string

d.

None of the mentioned

Posted under C Programming

Answer: (b).Print empty spaces if the string state is less than 10 characters

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What does this statement printf(“%10s”, state); means?

Similar Questions

Discover Related MCQs

Q. What are the Properties of first argument of a printf functions?

Q. Which of the following function with ellipsis are illegal?

Q. Which of the following data-types are promoted when used as a parameter for an ellipsis?

Q. Which header file includes a function for variable number of arguments?

Q. Which of the following macro extracts an argument from the variable argument list (i.e ellipsis) and advance the pointer to the next argument?

Q. The type va_list is used in an argument list

Q. Each call of va_arg

Q. The standard header _______ is used for variable list arguments (…) in C.

Q. va_end does whatever

Q. Which of the following is NOT a delimiter for an input in scanf?

Q. If the conversion characters of int d, i, o, u and x are preceded by h, it indicates?

Q. Which of the following doesn’t require an & for the input in scanf?

Q. Which of the following is an invalid method for input?

Q. Which of the following represents the function for scanf?

Q. scanf returns as its value

Q. int sscanf(char *string, char *format, arg1, arg2, …)

Q. The conversion characters d, i, o, u, and x may be preceded by h in scanf to indicate

Q. The first and second arguments of fopen are

Q. For binary files, a ___ must be appended to the mode string.

Q. If there is any error while opening a file, fopen will return