Sail E0 Webinar
Question


What is the output of this program?


1.
#include
2.
using namespace std;
3.
main()
4.
{
5.
double a = 21.09399;
6.
float b = 10.20;
7.
int c ,d;
8.
c = (int) a;
9.
d = (int) b;
10.
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
Output:
$ g++ op5.cpp
$ a.out
21 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