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 12689
Is file a keyword in c?
I need a sort of an approximate strcmp routine?
What is #line used for?
How we can insert comments in a c program?
How can I generate floating-point random numbers?
Write a program to print "hello world" without using a semicolon?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Explain what is wrong with this program statement? Void = 10;
How many types of operator or there in c?
Why is struct padding needed?
List the different types of c tokens?
What is c token?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
How is null defined in c?