for(i=0;i=printf("Hello");i++);
printf("Hello");
how many times how will be printed?????????
Answer Posted / 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 View All Answers
What is the role of && operator in a program code?
How reliable are floating-point comparisons?
What is a scope resolution operator in c?
What are keywords in c with examples?
What does c in a circle mean?
Write a program of prime number using recursion.
code for find determinent of amatrix
What is exit() function?
Why doesn't C support function overloading?
How can I pad a string to a known length?
What is variable in c example?
How can I remove the leading spaces from a string?
What is use of bit field?
What is pointer to pointer in c with example?
What is pointer in c?