41.
In C++, what is the syntax for the 'while' loop?

47.
What will be the output of the following code: int x = 10; if (x < 5) cout << "Less"; else if (x == 5) cout << "Equal"; else cout << "More"; in C++?