#include stdio.h  
int main()
{
float x = 3.0;
while (x != 4.0) {
printf("x = %f\n", x);
x += 0.1;
}
return 0;
}
What is the output of the above code snippet ?
Explain in the comment section.

Posted on by