Hi all,
I executed the following program in compiler,the control didn't go into the loop What is the reason?Your help is high li appreciable.
#include <stdio.h>
void main()
{
float x=1.1;
while(x == 1.1)
{
printf("%f\n",x );
x=x-0.1;
}
}
Pls help me.....
I executed the following program in compiler,the control didn't go into the loop What is the reason?Your help is high li appreciable.
#include <stdio.h>
void main()
{
float x=1.1;
while(x == 1.1)
{
printf("%f\n",x );
x=x-0.1;
}
}
Pls help me.....
Comment