M Mr. Dubey π Coach β 104.48K Points π Principles of Programming Languages Q. What is the output of the folloeing code? #include <iostream> using namespace std; int main() { int a = 10, b = 20; a = a++; b = ++b; cout << a << b; return 0; } (A) 2.2 (B) 2 (C) 2 (D) conversion from double to int is not possible ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) 2