Selection and Iteration in C
Selection Statements
Selection statements are used to choose among alternative actions.
if
if( Condition )
{
Action;
}
if(grade >= 60)
{
puts("Passed");
}
if .. else
if(Condition)
{
Action_1;
}
else
{
Action_2;
}
if(grade >= 60)
{
...
ahmedgouda.hashnode.dev2 min read