What do you mean by dynamic memory allocation in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of ?: Operator?
What is the use of getch ()?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
How can a program be made to print the name of a source file where an error occurs?
what is data structure.in linear and non linear data structures which one is better?Explain
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
what is develop in c language
What is else if ladder?
What is hashing in c?
what is data structure
What is the use of a conditional inclusion statement in C?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }