value = 0xabcd;
for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) {
foo();
if (loop & 1)
value >>= 1;
}
how many times is foo() executed?
Answer Posted / guest
5 times
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is pragma in c?
Is linux written in c?
Is array a primitive data type in c?
Give differences between - new and malloc() , delete and free() ?
What is const and volatile in c?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Is null always defined as 0(zero)?
Tell me when is a void pointer used?
What does the c preprocessor do?
How pointers are declared?
What is bin sh c?
Write a program of advanced Fibonacci series.
What are the 32 keywords in c?
Can we assign integer value to char in c?
What is the use of header?