guyz plzz i need flow chart on OHMS LAW in c programming....plzz help me out guyz
Answers
Answered by
0
Answer:
oh yes
Explanation:
search it on Google it will help you more
Answered by
0
Answer:
#include<stdio.h>
int main(void)
{
double V, I, R; // V is the voltage, I is the current, and R is the resistance
printf("Enter the current (amps):\n");
scanf("%lf",&V);
printf(" Enter the voltage(volts):\n");
scanf("%lf",&R);
I = V/R;
printf("The resistance flowing through it is %f amps.\n", I);
return 0;
}
Explanation:Enter the current (amps):
3
Enter the voltage(volts):
4
The resistance flowing through it is 0.750000 amps.
[Process completed - press Enter]
Similar questions