Computer Science, asked by himmi6747, 1 year ago

Write a program to solve the equation 5x+3=2y accept the value of x and determine y in c language

Answers

Answered by AnonymousKSB
2

Answer:

here is ur program in c;

Explanation:

#include<stdio.h>

int main() {

int x,y;

scanf("%d",&x);

5x+3=2y

printf ("%d",y);

return 0;

}

Similar questions