Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Comparison Operators Practice | Operators
C Basics

book
Comparison Operators Practice

Reviewing Comparison Operators

Below is a recap of the comparison operators we've covered:

OperationSymbolUsage Example
Equality==a == b
Inequality!=a != b
Greater than>a > b
Less than<a < b
Greater than or equal to>=a >= b
Less than or equal to<=a <= b

You'll be using some of these operators in the upcoming task.

Task

Swipe to start coding

Insert the appropriate inequality symbol (either < or >) so the expression evaluates to 1.

Solution

#include <stdio.h>

int main()
{
int a = 1;

printf("Answer is: %d\n", 3 + 6 * ++a > 14);

return 0;
}

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 5
#include <stdio.h>

int main()
{
int a = 1;

printf("Answer is: %d\n", 3 + 6 * ++a ___ 14);

return 0;
}
toggle bottom row
some-alt