please answer .,.... the question
Attachments:
Answers
Answered by
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");
}
}
}
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
0
this is the answer...
Attachments:
Similar questions
English,
7 months ago
English,
7 months ago
Math,
7 months ago
Social Sciences,
1 year ago
Social Sciences,
1 year ago
History,
1 year ago