how many keywords are available in 'c' language
a) 32
b) 34
c) 45
d) 48
can we declare a function in side the structure?
what are the advantages of a macro over a function?
What is the scope of global variable in c?
Which is better oop or procedural?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Tell me when would you use a pointer to a function?
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 do you define a function?
Explain demand paging.
how many error occurs in C language ?
What is wrong in this statement? scanf(“%d”,whatnumber);
What is pointers in c?