adplus-dvertising
frame-decoration

Question

What is the output of this C code?
#include <stdio.h>
    printf("%.0f", 2.89);

a.

2.890000

b.

2.89

c.

2

d.

3

Posted under C Programming

Answer: (d).3

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this C code?

Similar Questions

Discover Related MCQs

Q. Which of the following % operation is invalid?

Q. Which data type is suitable for storing a number like?
10.0000000001

Q. Modulus for float could be achieved by?

Q. Predict the data type of the following mathematical operation?
2 * 9 + 3 / 2 . 0

Q. %lf is used to display

Q. What is the sizeof(char) in a 32-bit C compiler?

Q. Size of an array can be evaluated by:
(Assuming array declaration int a[10];)

Q. Which of the following is not an operator in C?

Q. Which among the following has the highest precedence?

Q. What type of value does sizeof return?

Q. The sizeof(void) in a 32-bit C is_____

Q. Which among the following is never possible in C when members are different in a structure and union?
//Let P be a structure
//Let Q be a union

Q. Which among the following is never possible in C when members in a structure are same as that in a union?
//Let P be a structure
//Let Q be a union

Q. Which among the following is right?

Q. Which of the following cannot be used inside sizeof?

Q. In a file contains the line "I am a boy\r\n" then on reading this line into the array str using fgets(). What will str contain?

Q. Out of fgets() and gets() which function is safe to use?

Q. What is the purpose of "rb" in fopen() function used below in the code?
FILE *fp;
fp = fopen("source.txt", "rb");

Q. Which of the following operations can be performed on the file "NOTES.TXT" using the below code?
FILE *fp;
fp = fopen("NOTES.TXT", "r+");

Q. The maximum combined length of the command-line arguments including the spaces between adjacent arguments is