Consider the simple electric circuit above. Write a C program that calculates the current through each resistor. The code must use a constant for the voltage and arrays for the resistor and current values. The program prints each current value for each resistor on a new line in the format: "I1 = x.xx", etc.  Ohm's Law states: I=V/R Complete the following C program using the code provided to match the correct lines of code in the correct order to create the C program.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Consider the simple electric circuit above.

Write a C program that calculates the current through each resistor. The code must use a constant for the voltage and arrays for the resistor and current values.

The program prints each current value for each resistor on a new line in the format: "I1 = x.xx", etc. 

Ohm's Law states: I=V/R

Complete the following C program using the code provided to match the correct lines of code in the correct order to create the C program.

//Line 1

//Line 2

//Line 3
//Line 4
//Line 5

//Line 6
//Line 7
//Line 8
//Line9
//Line 10


-
//Line 1


-
//Line 2


-
//Line 3


-
//Line 4


-
//Line 5


-
//Line 6


-
//Line 7


-
//Line 8


-
//Line 9


-
//Line 10

1.    
#include <stdio.h>

2.    
printf("I%d = %.2f\n", i+1, currArray[i]);

3.    
void main(char argc, char **argv)

4.    
currArray[i] = (float)VOLTAGE/resistArray[i];

5.    
float currArray[4], resistArray[4] = {10, 20, 30, 40};

6.    
for (int i = 0; i < 4; i++) ;

7.    
int currArray[4], resistArray[4] = {10, 20, 30, 40};

8.    
while (i < 4)

9.    
{

10.    
}//main

11.    
printf("I%d = %f\n", i, currArray[i]);

12.    
for (int i = 0; i < 4; i++) {

13.    
(

14.    
#define VOLTAGE 24

15.    
void main(void)

16.    
)

17.    
resistArray[i] = VOLTAGE/currArray[i]; 

18.    
#include 24

19.    
}//for

20.    
#include <stdlib.h>

Expert Solution
steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY