how many times does the loop iterated ?
for (i=0;i=10;i+=2)
printf("Hi\n");
Answer Posted / pradeep
infinite loop becouse ther is no condition given there.
absence of condition it will be printing hi infinite time
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
Is it possible to execute code even after the program exits the main() function?
What is a static variable in c?
What is const keyword in c?
What are the uses of null pointers?
Explain how do you print only part of a string?
What are the features of the c language?
What is the purpose of the statement: strcat (S2, S1)?
What is a rvalue?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
how do you programme Carrier Sense Multiple Access
Is there a built-in function in C that can be used for sorting data?
How can I pad a string to a known length?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What are the restrictions of a modulus operator?