Programmation Avancée en C


cast2.c

00001 #include <stdio.h>
00002 
00003 int main () 
00004 {
00005     if ( sizeof(int) < -1) printf("Cha ch'est louche\n");
00006     else                   printf("On est super content!\n");// A priori, 4 >= -1 ! 
00007     return 0;
00008 }