what is nested if ??
Answers
Answered by
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
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
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");
}
}
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
Similar questions