Computer Science, asked by ManushikaDhar, 1 year ago

Give an Example of -Ladder If Else in coding of a program


lifeislife: can I give a C program for u

Answers

Answered by prakriti27
1
if(condition 1)
{
statement 1;
}
else if (condition 2)
{
statement 2;
}
.
.
else if(condition n)
{
statement n;
}
else
{
statement;
}

ManushikaDhar: THks for the ans it helped me a lot
prakriti27: welcome!
Similar questions