if else conditional statement in C programming language: syntax: if(condition) { true block; } else { false block; } Explanation: First if will check the conditon if the condition is true then true block will be exectued. Suppose the condition becomes false then false block will executed.