Examveda

What will be the output of the following C++ code?
#include <stdio.h> 
#include<iostream>
using namespace std;
int main()
{
    int num1 = 5;
    int num2 = 3;
    int num3 = 2;
    num1 = num2++;
    num2 = --num3;
    cout << num1 << num2 << num3;
    return 0;
}

A. 532

B. 235

C. 312

D. 311

Answer: Option D


Join The Discussion

Related Questions on Classes and Objects in C plus plus