I've made this program as a school homework. It's for solving the "ax˛+bx+c=d" equation:

float a,b,c,d,delta,x,y;
printf("Enter a value of a:");
scanf("%f",&a);
printf("Enter a value of...