AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Answers were Sorted based on User's Feedback
what is a function prototype?
Explain b+ tree?
What are header files and what are its uses in C programming?
Meaning of () in c
Explain how can you determine the size of an allocated portion of memory?
List the variables are used for writing doubly linked list program.
What is difference between Structure and Unions?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
How do I send escape sequences to control a terminal or other device?
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
Why n++ execute faster than n+1 ?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?