how many times does the loop iterated ?
for (i=0;i=10;i+=2)
printf("Hi\n");
Answer Posted / guest
Infinite
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
Is that possible to add pointers to each other?
What are logical errors and how does it differ from syntax errors?
What is the auto keyword good for?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is #define in c?
What is meant by high-order and low-order bytes?
write a program to generate address labels using structures?
What is #line?
Can you pass an entire structure to functions?
What is wrong in this statement?
what is the function of pragma directive in c?
What is a pointer value and address in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
I have a varargs function which accepts a float parameter?
Write a program to identify if a given binary tree is balanced or not.