Computer Science, asked by Saiprasan, 1 year ago

what is nested if ??

Answers

Answered by RiyaWani
7
hey!
here is your answer
nested if is a stalker used in Java in which u have many if statements inside it
hope it helps you
have a great day ahead
Answered by CocChamp26
4
if inside another if is nested if
for e.x.
int i=10;
if(i>5)
{
 if(i/2==0)     //nested if
{
printf("value of i is more than 5 and it is an even number");
}
}


Anonymous: hiiii
Anonymous: bro
Similar questions