#include <stdio.h>
int main()
{
float f=0.0f;
int i;
for(i=0;i<10;i++)
f = f + 0.1f;
if(f == 1.0f)
printf("f is 1.0 \n");
else
printf("f is NOT 1.0\n");
return 0;
}
gaurav252 0 Newbie Poster
WolfPack 491 Posting Virtuoso Team Colleague
vidaj 35 Junior Poster in Training
Salem commented: Good answer! +9
Ancient Dragon commented: yes you are absolutely correct. +18
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.