define if statement in C++
Answers
Answered by
2
The syntax of if statement in C++ is
if(Boolean_expression){// statement(s)will execute if the Boolean expression is true}.If the Boolean expression evaluates to true,name the block of code or the code inside the if statement will be executed !
Hope this answer will be helpful!
Hit thanks if it is helpful!
Similar questions