determine the output of the following when x is 9 and y is 11 and when x is 11 and y is 9
if(x<10)
if(y>10)
printf("*****\n");
else
printf("#####\n");
printf("$$$$$\n");
if(x<10) {
if(y>10)
printf("*****\n");
}
else {
printf("#####\n");
printf("$$$$$\n");
}
if(x<10)
if(y>10)
printf("*****\n");
else
printf("#####\n");
printf("$$$$$\n");
if(x<10) {
if(y>10)
printf("*****\n");
}
else {
printf("#####\n");
printf("$$$$$\n");
}
