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 }
9511_workbooksolved exercises from algorithms & programming I (9511) prof. Cardozo |