for(i=0;i=printf("Hello");i++);
printf("Hello");
how many times how will be printed?????????

Answers were Sorted based on User's Feedback



for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be pr..

Answer / ruchi

Infinite times
i =printf("Hello");
here printf("hello") will return 5 i.e i=5 which will always
remain true that's why hello will be printed infinate times.

Is This Answer Correct ?    23 Yes 6 No

for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be pr..

Answer / vignesh1988i

here the basic thing we must understand is that :

printf(); is a function. this printf() always returns the
number of character it processes inside " ".......here it
will return 4 according to me... this will will be assigned
to i and everytime 'i' will be a non zero value always and
also a semicolon is placed after for statement , so compiler
takes that has the next line and PRINTS "HELLO" INFINITELY
since 'i' value is always non zero or always TRUE...

and there is no way for the second printf() to get printed
according to me.........



thank u

Is This Answer Correct ?    18 Yes 5 No

for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be pr..

Answer / navdeep

"Hello" will be printed infinite times

Is This Answer Correct ?    6 Yes 0 No

for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be pr..

Answer / anandi

"Hello" will be printed infinite time.......

Is This Answer Correct ?    6 Yes 2 No

for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be pr..

Answer / shashikanth

Hello wil be printed infinite times

Is This Answer Correct ?    2 Yes 1 No

for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be pr..

Answer / kalyan chukka

Here in the loop it given as i=0;i=printf("Hello");
So Printf function returns how many no of charecters it
printed so it takes 5 so loop is

for (i=0;i=5;i++) so loop will be this
in the above loop first i=0 and then we assign i=5 so loop
will become for(i=5;i++) it becomes infinite loop hello
printed infineite loop.

Is This Answer Correct ?    1 Yes 1 No

for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be pr..

Answer / m.manivel

Hello will be printed infinite times and if u want to print
10 times for put i=10;(or)print for 100 times put i=100;for
user choice

Is This Answer Correct ?    0 Yes 0 No

for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be pr..

Answer / asit mahato

for(i=0;i=printf("Hello");i++);
means
for(i=0;i=printf("Hello");i++)
{

}
thats why it will print Hello only one time.

Is This Answer Correct ?    2 Yes 14 No

Post New Answer

More C Interview Questions

How can I ensure that integer arithmetic doesnt overflow?

0 Answers  


What is the difference between null pointer and wild pointer?

0 Answers  


Tell me is null always defined as 0(zero)?

0 Answers  


What is the meaning of && in c?

0 Answers  


What is the Difference between Class and Struct?

10 Answers   Motorola,






Describe how arrays can be passed to a user defined function

0 Answers  


how to determine the complexity of an algorithm as log(n)

1 Answers   Google,


What was noalias and what ever happened to it?

0 Answers  


main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }

2 Answers   CSC,


how we can say java is platform independent, while we require JVM for that particular Operating System?

3 Answers   Honeywell, TCS,


Write a program to swap two numbers without using third variable?

0 Answers  


Ow can I insert or delete a line (or record) in the middle of a file?

0 Answers  


Categories