95.11

Apuntes y resueltos de la materia Algoritmos y Programación (95.11)
Index Commits Files Refs README
guias/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 }