value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
6 12857how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
3 12685
What are pointers?
Explain zero based addressing.
What are the differences between new and malloc in C?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
If fflush wont work, what can I use to flush input?
Do pointers need to be initialized?
Explain the difference between exit() and _exit() function?
Which is the memory area not included in C program? give the reason
How can I call fortran?
Stimulate calculator using Switch-case-default statement for two numbers
hi send me sample aptitude papers of cts?
Describe static function with its usage?
Differentiate between a structure and a union.
What is the difference between a free-standing and a hosted environment?
Write a program to find factorial of a number using recursive function.