The below program seems to look like it will run for one time but when i run in Turbo C , the output is nothing. Can any one explain this ?
#include<stdio.h>
int main() 
{
    float x=1.1;
    while(x==1.1)
    {
        printf("%f \n",x);
        x=x-0.1;
    }
    return 0;
}
 
     
     
     
    