//Write a program in C to find roots of a quadratic equation using ternary operator. int main() { int a, b, c; float d; printf("Enter the value of a: "); scanf("%d ...