Given the input:
double x1,y1,x2,y2;
How can I find the general form equation (double a,b,c where ax + b
#include main() { int a,b,c; char x,y; a=5; b=10; c=15; x=2; y=3; printf("the equation of line is %dx+%dy=%d" ,a,b,c); }