#include int main () { volatile float a, b; a = 0; while (1) { b = a + 1; if (a == b) break; a = b; } printf ("%f\n", a); return 0; }