if Statement in C
if statement is one of the basic and primitive decision making statement supported by C language. The general syntax of if statement is as follows: if ( condition ) statement; This flow control construct first checks the condition and if it evaluates to True then executes the statement. The condition can be any expression that … Read more