Is array name a pointer?
No Answer is Posted For this Question
Be the First to Post Answer
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is the purpose of the statement: strcat (S2, S1)?
What is period operator in c?
Explain how can I convert a number to a string?
Why clrscr is used in c?
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? Upload a C program to demonstrate the behaviour of the game.
Explain how do you sort filenames in a directory?
What is a memory leak in structures? How can we rectify that?
write a program to convert a expression in polish notation (postfix) to inline (normal)
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
How can I find leaf node with smallest level in a binary tree?