C & C++ FAQ
|
C | C++ | if (x) … とは何ですか。 |
■実現例1 if (x) printf("○"); else printf("×"); ■実現例2 if (x == 0) printf("×"); else printf("○"); ■実現例3 if (x != 0) printf("○"); else printf("×"); |
標準C | §6.6.4.1 | The if statement |
標準C99 | §6.8.4.1 | The if statement |
標準C++ | §6.4.1 | The if statement |