9511_workbook

solved exercises from algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
guia02/ex16.c (148B)
   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