Systemnahe Programmierung in C: Bedingte Ausdrücke |
1int
2signum (int x)
3{
4 return
5 (x > 0)
6 ? 1
7 : (x < 0)
8 ? -1
9 : 0;
10}
|
1int
2signum (int x)
3{
4 return
5 (x >= 0) - (x <= 0);
6}
|
Letzte Änderung: 11.01.2007 | © Prof. Dr. Uwe Schmidt |