1 #include <stdio.h> 2 3 #define TRUE 0 4 5 #ifdef TRUE 6 #undef TRUE 7 #define TRUE 1 8 #endif 9 10 int main(void) 11 { 12 printf("TRUE = %d\n", TRUE); 13 return 0; 14 } 15 16
9511_workbooksolved exercises from algorithms & programming I (9511) prof. Cardozo |