1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int p = 7, q = 9, r, s;
r = p, q;
s = (p, q);
cout << r << ' ' << s;
return 0;
}

A. 7 9
B. 9 7
C. 9
D. 7
E. None of these
Answer» B. 9 7


Discussion

No Comment Found

Related MCQs