how many times does the loop iterated ?
for (i=0;i=10;i+=2)
printf("Hi\n");

Answers were Sorted based on User's Feedback



how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / ani

infinite loop, bcoz there is no condition to break the loop.

Is This Answer Correct ?    16 Yes 3 No

how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / guest

infinite coz there is no condition to stop it

Is This Answer Correct ?    11 Yes 4 No

how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / guest

Infinite

Is This Answer Correct ?    7 Yes 3 No

how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / vignesh1988i

this will give an warning message .....

it will print the "Hi" infinite times...... since we used
assignment opeartor in the termination condition of the
looping statement....

when i is initilized to 0 first.. again i=10 is been
initilized to 10... so however i is been incremented by 2 or
by n times.... i=10.. which will be an non zero value.... so
it wont come out of the loop.... infered as infinite running.

Is This Answer Correct ?    6 Yes 2 No

how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / pradeep

infinite loop becouse ther is no condition given there.
absence of condition it will be printing hi infinite time

Is This Answer Correct ?    5 Yes 2 No

how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / rahul

infinite times

Is This Answer Correct ?    4 Yes 3 No

how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / altaf khan

it will give an error becoz in place of condition it is given a statement which does not returns boolean value

Is This Answer Correct ?    1 Yes 1 No

how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / sai

It doesn't has condition in the loop to move on, and here i
is of type what?, not mentioned.
This loop doesn't executes with this condition, it should
be told i<= or i>= depending on the requirement.

Is This Answer Correct ?    1 Yes 1 No

how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n"); ..

Answer / viji

It will give a warning message........

Is This Answer Correct ?    1 Yes 9 No

Post New Answer

More C Interview Questions

Why does everyone say not to use scanf? What should I use instead?

0 Answers  


In scanf h is used for

4 Answers   BFL,


How do you declare a variable that will hold string values?

0 Answers  


What are c preprocessors?

0 Answers  


DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,






why i join syntel?

23 Answers   ABC, Syntel, TCS,


why we wont use '&' sing in aceesing the string using scanf

0 Answers   HCL,


main() { printf(5+"Vidyarthi Computers"); }

6 Answers  


What is exit() function?

0 Answers  


Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.

6 Answers  


Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,


please explain every phase in the "SDLC" in the dotnet.

0 Answers  


Categories