/* Input Conversion Error */ #include int main(void) { // Use %f for the input of an integer variable int x = 0; /* Declare x variable */ printf("Enter an Interger: "); scanf("%f",&x); /* Input data */ printf("The stored value is: %f \n",x); return(0); } /* End of Program */