I saw this code on Exam: the question is how many times this string will be printed.
I thought first it will be 10 times but this is wrong. Can someone tell me why my answer is wrong. This is part of a code in the C language.
for (float x = 100000001.0f; x <= 100000010.0f; x += 1.0f) {
printf("lbc");
}