Q137
What will be the output of the following C++ code? #include using namespace std; void PrintSequence(int StopNum) int Num; Num = 1; while (true) if (Num >= StopNum) throw Num; cout << Num; Num++; int main(void) try PrintSequence(20); catch(int ExNum) cout << "Caught an exception with value: " << ExNum; return 0;
A.
compile time error
B.
prints first 19 numbers
C.
prints first 19 numbers and throws exception at 20
AnswerD.
prints first 17 numbers
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board