What is calloc malloc realloc in c?
No Answer is Posted For this Question
Be the First to Post Answer
Are the expressions * ptr ++ and ++ * ptr same?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
wat is the meaning of c?
What are examples of structures?
What is the difference between macros and inline functions?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
What is huge pointer in c?
which one is better structure or union?(other than the space occupied )
State the difference between realloc and free.
Differentiate between a structure and a union.
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }