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
Is anything faster than c?
What is table lookup in c?
What is a static function in c?
Who invented bcpl language?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is the advantage of a random access file?
What is extern keyword in c?
Describe the order of precedence with regards to operators in C.
What is the argument of a function in c?
What do header files do?
write a c program in such a way that if we enter the today date the output should be next day's date.
Explain the term printf() and scanf() used in c language?
What is the use of define in c?
What does emoji p mean?
What is difference between %d and %i in c?