For the complete list of the tutorial on this blog, you can check these following links:
1. Introduction
2. First C-Program
3. Types and Variables
4. Conditional Statements
5. Function and Math Operations
6. Arrays
7. Pointers
8. I/O in C
One of the most important ability of programmer is to how to handle flow of the program. This includes how the program takes decision when there is a conditional statement. The if
statement in C is used to check the certain conditions and will proceed to the next action if the result is true. For example, you want your code to execute a computation if a variable x
is bigger than y
value. If y
value is smaller than x
, then the condition is not fulfilled and the flow of the codes will be redirected to a different branch.
In this tutorial, we will learn about relational operations within C programming language and use them to determine the outcome of a certain condition.
Logical Operators
A true
statement is one that evaluates to a non zero number, while false
is always represented by zero number. When we’re dealing with relational or operators, the operator will return 1 if the comparison is true, and return 0 if comparison is false.
Here are listed relational operators available in C:
preprocessors | definition | usage example |
---|---|---|
> | greater than | if (3>2) is true |
< | less than | if (2<3) is true |
>= | greater than or equal | if (4>=4) is true |
<= | less than or equal | if (5<=5) is true |
== | equal | if (2==2) is true |
!= | not equal | if (10!=5) is true |
Now let’s use those operators in conditional statements.
Conditional Statements: IF
The structure of an if statement in C is as follows:
if (statement is true) execute this line of code
or if you have more than one line of codes, now we called it a compound of a statement, or in sort, a block. This block is in between braces {}
.article-wrap
if (statements is true) { execute these lines of code }
Now, given x
and y
, we want to print out something using printf()
function, if x
value is bigger than y
, thus the example C codes will be:
if (x > y) { /* comment lines do not count as code line, thus braces are optional */ printf("Yeah, we have x that is bigger than y\n"); } /* lines after */ ...
As commented inside the code snippet above, whenever x
value is bigger than y
, then the program flow will execute the code block inside. However, if the conditional statement returns false, then the program flow will ignore the code block and execute lines after.
Conditional Statements: ELSE
So when the condition in an if
statement returns a false value, we can redirect the program to execute different block of codes instead of the code executed when the statement evaluates to true. The else
statement means that whatever code after it (whether a single line or code between brackets) is executed if the if
statement is false.
In C codes, if
and else
implementation will look like this:
if (TRUE) { /* executes this code block if true */ } else { /* otherwise execute this code block if false */ }
Multiple Conditional Statements: ELSE IF
Sometimes, when there are multiple conditional statements that all of them probably will be evaluated as true, but you want only the code block from the first conditional statement that will be executed. On in other words, if the first if
conditional statement is true, then the program will immediately execute corresponding code block, if not then it goes to the second conditional statement, which uses else if
. If it is evaluated as a true result, then else
will be ignored and the program will execute second code block. If not, then the program will go to the last code block related to the else
conditional.
Check this complete example to get a grasp on this conditional statement tutorial:
The result of this quite concise example with MYAGE
macro variable 25 years old will be like this:
you're just 25? You're young!
Then, change MYAGE
value to 30 years old, and the result will be:
you're 30! you're in a perfect shape!
And lastly, let’s assume that this guy is 59 years old. Then the result will be:
well, at 59, you're quite old!
If you feel you already got some basics on conditional statements, then later on there will be an advanced flow control, e.g for-loops and do-while. We will learn this later on.
For now, let’s proceed onto tutorial about how to deal with multiple functions, how to organize them and how to compile them in next tutorial.