Explain enumerated types in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What does %p mean c?
pgm to find middle element of linklist(in efficent manner)
What are the string functions? List some string functions available in c.
What is calloc malloc realloc 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.
What is double pointer in c?
Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;
18 Answers Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,
Why c language?
What is pass by reference in c?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
What is a macro in c preprocessor?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }