In this video, you will learn syntax of "if" statement in C. You will also understand how "if" works in C programming.
Here, "if" is a keyword in C. After "if" keyword, there is a condition specified within round brackets. condition can be any expression that evaluates to true or false. If the condition evaluates to true, block of statements enclosed within curly braces will be executed. If the condition evaluates to false, block of statements enclosed within curly braces will be skipped.
Here is the syntax of if-statement in C:
if(condition)
{
//Block of statements
}
Interested in learning C programming language? Here is the FREE C Programming 5-Day Challenge for you - https://www.aptuts.com/c-programming-...
#ifStatementC #CProgramming #aptuts