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

What are called c variables?

0 Answers  


Do you know the purpose of 'register' keyword?

0 Answers  


What is realloc in c?

0 Answers  


Can we increase size of array in c?

0 Answers  


What is malloc and calloc?

0 Answers  






What is #include stdio h?

0 Answers  


diff .between strcture and union

2 Answers  


Why & is used in c?

0 Answers  


what are you see during placement time in the student.

0 Answers   Goldman Sachs, TCS, Tech Solutions,


What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

0 Answers  


#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }

1 Answers  


what is ur strangth & weekness

0 Answers   Cognizant, LG Soft, NetEnrich,


Categories