1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int K, L;
L = 12;
K = (L++, L + 105, 99 + L);
cout << K;
return 0;
}

A. 105
B. 99
C. 12
D. 1010
E. 112
Answer» F.


Discussion

No Comment Found

Related MCQs