Q25
Single choice
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int main()
{int i=5;
switch(i)
{case 1:
cout<<"Hello";
break;
case 2:
cout<<"world";
break;
case 3:
break;
default:
cout<<"End";
}
return 0;
}