What happens when you attempt to compile and run the following code?
#include
using namespace std;
int main()
{
int i = 4;
while(i >= 0) {
cout<<>
i??;
}
return 0;
}
Select an option, then click Submit answer.
-
○
It prints:”43210”
-
○
It prints:”3210”
-
○
It prints: ”3210?1”
-
○
None of these