Explain the difference between ++u and u++?
No Answer is Posted For this Question
Be the First to Post Answer
What is a void pointer in c?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
What is the meaning of typedef struct in c?
Which is best linux os?
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
What is the difference between constant pointer and constant variable?
Why doesn't the code "a[i] = i++;" work?
What is an array? What the different types of arrays in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
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?
Can a program have two main functions?
What is the purpose of realloc()?