Changes

Jump to: navigation, search

Langage C

418 bytes added, 20:46, 2 September 2015
/* chapter 6 (résumé) */
a--;
'''Operateur relationnel ''': comparison between two variables, the result is '1' if the test is positive and '0' if the test is negtaive
 
<u>exemple</u>:
int a, b;
// test d'équalité
a == b;
// test de difference
a != b;
// test de supériorité
a > b;
// test de supériorité ou d'égalité
a >= b;
// test d'inférieurité
a < b;
// test d'inférieurité ou d'égalité
a <= b;
==== Trick ====
'''Warning''': don't mistake this : '=' & '==' => the first symbol correponds at the allocation / the second symbol corresponds at the test between two variables
952
edits