value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
6 12680how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
3 12528
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 a void * in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is dangling pointer in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is restrict keyword in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is data structure in c programming?
What is a nested loop?
What is integer constants?
What is use of pointer?
What are types of structure?
Write a program to check prime number in c programming?
What is the role of this pointer?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.