#include void main() { /* Calculate the values of a quadratic equation */ int X, Y; X = -100; while (X<100) { Y = 5*X*X + 4*X + 12; printf("X = %d, Y = %d\n",X,Y); X++; } }