9511_workbook

solved exercises from algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
guia02/ex14.c (137B)
   1 #include <stdio.h>
   2 
   3 typedef enum { 
   4     1200, 2400, 4800, 9600 
   5 } baudrate_t;
   6 
   7 int main(void) 
   8 {
   9     baudrate_t baudrate = 9600;
  10     return 0;
  11 }