The ternary operator - overview

Nasza ocena:

3
Wyświetleń: 364
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
The ternary operator  - overview - strona 1

Fragment notatki:

The ternary operator ?: • Syntax: expr 1 ? expr 2 : expr 3 • The expression expr 1 is evaluated first • If it is true (not 0), then the result is equal to expr 2 • Otherwise expr 3 is evaluated as the value • Only one of expr 2 and expr 3 is evaluated • Example: z = (a b) ? a : b; /* z = max(a, b) */ ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz