Computer Science, asked by praneeth6102, 14 days ago

write a program to compute and display the value of x x=a/(b-c)​

Answers

Answered by sans2121
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