Answer Posted / p.saravanana
Data structure is a (computer science) the organization of
data (and its storage allocations in a computer)
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What are register variables in c?
What is meant by type casting?
please give me some tips for the placement in the TCS.
Why does the call char scanf work?
What are different types of operators?
What is ponter?
What are linked lists in c?
write a program in c language to print your bio-data on the screen by using functions.
What is c method?
Where register variables are stored in c?
Explain the difference between getch() and getche() in c?
What does & mean in scanf?
What are examples of structures?
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(); }
What is the difference between malloc calloc and realloc in c?