write a program to compute and display the value of x x=a/(b-c)
Answers
Answered by
0
MARK MY ANSWER BRAINLIEST PLEASE.
void main()
{
int a,b,c;
float x;
clrscr();
printf("Enter value of a,b,c:");
scanf("%d %d %d",&a ,&b ,&c);
x=a/(b-c);
printf("Value of x:%f",x);
getch();
}
Similar questions
Computer Science,
1 month ago
Math,
1 month ago
History,
1 month ago
India Languages,
3 months ago
English,
3 months ago
Math,
10 months ago
Hindi,
10 months ago
Social Sciences,
10 months ago