9511_workbook

solved exercises from algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
guia02/ex17.c (127B)
   1 #include <stdio.h>
   2 
   3 int main(void)
   4 {
   5     #ifdef DEBUG
   6         printf("DEBUGGING\n");
   7     #endif
   8     
   9     printf("Hello world!\n");
  10 
  11     return 0;
  12 }