int num = 0; cout << "First time: " << num++; cout << "Second time: " << ++num;What is the output?First time: ?Second time: ?
First time:0
Second time:2
error: no match for ‘operator&’ (operand types are ‘std::basic_ostream’ and ‘int’) cout << "First time: " & num++; ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~