Sail E0 Webinar
Question

What is the output of this program?

#include < iostream >

using namespace std;

int main()

{

int a = 5, b = 6, c, d;

c = a, b;

d = (a, b);

cout

Options:
A .  5 6
B .  6 5
C .  6 7
D .  none of the mentioned
Answer: Option A


It is a separtor here.In c,the value a is stored in c and in d the value b is stored in d because of the bracket.



Was this answer helpful ?
Next Question

Submit Solution

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

Latest Videos

Latest Test Papers