Which are low level languages?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of keyword volatile??
How pointers are declared?
define string ?
Why should I use standard library functions instead of writing my own?
explain what are pointers?
ratio,age,persentage
What is pre-emptive data structure and explain it with example?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Explain about the constants which help in debugging?
Why header files are used?
why arithmetic operation can’t be performed on a void pointer?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?