Sail E0 Webinar
Question

What is the output of this program?

#include < iostream >

using namespace std;

main()

{

double a = 21.09399;

float b = 10.20;

int c ,d;

8.        c = (int) a;

d = (int) b;

cout

Options:
A .  20 10
B .  10 21
C .  21 10
D .  none of the mentioned
Answer: Option C


In this program, we are casting the operator to integer, So it is printing as 21 and 10



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers