Why does (I==1; I<=3; I++) printf ("hello") print hello four times instead of three times? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why does (I==1; I<=3; I++) printf ("hello") print hello four times instead of three times?

22nd Jan 2020, 4:07 PM
ASIYA SHAIKH
ASIYA SHAIKH - avatar
4 Answers
+ 3
~ swim ~ that seems to obvious if that is what the learner is looking for. ASIYA SHAIKH make sure that the question you posted is right and let the community know if you have received the answer you are looking for by acknowledging it.
22nd Jan 2020, 4:40 PM
Avinesh
Avinesh - avatar
+ 1
~ swim ~ But then it has to be I = 0 for it to print it 4 times, another mistake.
22nd Jan 2020, 4:45 PM
Avinesh
Avinesh - avatar
+ 1
~ swim ~ Agreed as well, but she has some searching and sorting algorithms in her code bits which made me think that this should have been simple for her but the question itself seems wrong.
22nd Jan 2020, 4:52 PM
Avinesh
Avinesh - avatar
+ 1
It is assumed that I has been declared and is equal to 0 when this first executes. If I is a stack variable though, this can not be guaranteed and can be any value. The code I==1 simply returns 0 (false) because it is not an assignment, but rather a test. A compiler should warn that I==1 has no effect in this case.it’s also missing the for. The line should be: for (I=1; I<=3; I++) printf ("hello");
22nd Jan 2020, 5:59 PM
ASIYA SHAIKH
ASIYA SHAIKH - avatar