for(i=0;i=printf("Hello");i++);
printf("Hello");
how many times how will be printed?????????
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
Can you return null in c?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
Differentiate between the = symbol and == symbol?
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
How do I initialize a pointer to a function?
What are the different data types in C?
What do you mean by a local block?
What functions are used for dynamic memory allocation in c language?
simple c program for 12345 convert 54321 with out using string
what is the difference between definition and declaration? give me some examples.
write a program to display the array elements in reverse order in c language