Discussion :: C++ - MCQs
-
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 << c << 't' << d;
return 0;
}
Answer : Option A
Explanation :
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.
Be The First To Comment