What are the advantages of union?
No Answer is Posted For this Question
Be the First to Post Answer
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
What is the modulus operator?
Is file a keyword in c?
Why isnt there a numbered, multi-level break statement to break out
Define recursion in c.
What are header files and what are its uses in C programming?
What is the translation phases used in c language?
Why can't we initialise member variable of a strucutre
What is the difference between null pointer and the 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?
How does sizeof know array size?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;