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 the use of a static variable in c?
Why isnt any of this standardized in c?
Is c compiled or interpreted?
What is pointer & why it is used?
What is a #include preprocessor?
Are c and c++ the same?
What are global variables and explain how do you declare them?
Why is c known as a mother language?
how to count no of words,characters,lines in a paragraph.
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Can you define which header file to include at compile time?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Write a simple code fragment that will check if a number is positive or negative.
What is the Purpose of 'extern' keyword in a function declaration?
What is the mean of function?