if…else Statement in C
if…else statement is an extension of if statement supported by C language. The statement is a two-way decision making statement in which the condition is evaluated first and if it evaluates to true one set of statements is executed and other set is not. Conversely, if the condition evaluates to false then the other set … Read more