I can not get to make this comparison in this simple code error .. what kind I'm making and what is the reason? ...
#include <stdio.h>
int main()
{
double a = 0.0;
double b = 1.0;
double c = 0.1;
while( a != b )
a=a+c;
printf("Suma hasta 1 completada\n");
}
tnx for the answers...