9511_workbook

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