If-Else is a decision-making statement, where the result will be either
true or
false. If the statement accepts boolean values – if the value is true then it will execute the block of statements below it otherwise not. If no curly braces
'{' and
'}' is provides after if(condition) then by default if statement will consider the immediately below statement to be inside its block.
Decision-making statements in programming languages decide the direction of the flow of program execution. If is one of such a decision-making statement.
If any
printf() or
std::cout statement is written at the place of
condition within if block then the
Output Window will get the output as whatever written at the place of condition, and this condition will be always evaluated as
true. So
if statement will be executed as a
true condition. Below is the illustration of the same:
Output:
Welcome to GeeksforGeeks