for(i=0;i=printf("Hello");i++);
printf("Hello");
how many times how will be printed?????????
Answer Posted / 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 |
Post New Answer View All Answers
What is an auto keyword in c?
What is quick sort in c?
What is wrong in this statement?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Are global variables static in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is the meaning of ?
What is the difference between Printf(..) and sprint(...) ?
Explain threaded binary trees?
What is the full form of getch?
What is the difference between mpi and openmp?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is a macro, and explain how do you use it?
What is a null pointer in c?
What does char * * argv mean in c?