What will be the output of the following program?
void main()
{
int p,q,r;
p=10;
q=20;
r=30;
if ((p>10)||(q<30))
if(r>p)
cout<<”Wintern”;
else if((p<q)&&(r<20))
cout<<”Summern”;
cout<<”Autumn”;}
Reveal answer
Fill a bubble to check yourself