C Language Tutorials by Ghulam Murtaza Dahar - HTML preview

PLEASE NOTE: This is an HTML preview only and some elements such as links or page numbers may be incorrect.
Download the book in PDF, ePub, Kindle for a complete version.

Example

==

Equal to

5==3 returns false (0)

>

Greater than

5>3 returns true (1)

<

Less than

5<3 returns false (0)

!=

Not equal to

5!=3 returns true(1)

Operator

Meaning Of Operator