#include<stdio.h>
int main(void)
{
float a=0.08;
if(a<0.08)
printf("Hello\n");
else
printf("Hii\n");
return 0;
}The o/p is: *Hello * why???? -- Ankit Agarwal -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
