9511_workbook

solved exercises from algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
guia01/ej2.c (172B)
   1 /*    Calculates the total resistance of a closed circuit    */
   2 
   3 #include <stdio.h>
   4 
   5 #define MAX_RESISTORS 7
   6 
   7 int main( void  ) {
   8 
   9     int resistor[MAX_RESISTORS];
  10 
  11 
  12 
  13 
  14     return 0;
  15 }