value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
6 12658how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
3 12522
what do the 'c' and 'v' in argc and argv stand for?
What is a lookup table in c?
Give me the code of in-order recursive and non-recursive.
What is c variable?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is the size of array float a(10)?
What is d'n in c?
Difference between malloc() and calloc() function?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
What is an example of structure?
What is scope and lifetime of a variable in c?
How can you invoke another program from within a C program?
What is table lookup in c?
What is the difference between memcpy and memmove?
What is static identifier?