Sail E0 Webinar
Question


What is the output of this program?


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



Was this answer helpful ?
Next Question

Submit Solution

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

Latest Videos

Latest Test Papers