Computer Science, asked by hxncmhkn, 1 year ago

please answer .,.... the question

Attachments:

Answers

Answered by sudha97
0
nested loop is a if-else inside the if-else condition
example:
int main()
{
int a=1,b=1;
if(a==1)
{
if(b==1)
{
printf("hello");
}
else
{
printf("hi");
}
else
{
printf("i am student");
}
}
}

Answered by Ronnyxxxx
0
this is the answer...
Attachments:
Similar questions