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