Describe wild pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
What's a good way to check for "close enough" floating-point equality?
how to find the kth smallest element in the given list of array elemnts.
Explain the difference between ++u and u++?
Hai why 'c' is the middle language
Explain the difference between malloc() and calloc() in c?
Why does notstrcat(string, "!");Work?
Code for calculating square root without using library function, of math.h
What are macros in C?
Why is this loop always executing once?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
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?