what is data structure?

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


Please Help Members By Posting Answers For Below Questions

What are register variables in c?

797


What is meant by type casting?

823


please give me some tips for the placement in the TCS.

1851


Why does the call char scanf work?

879


What are different types of operators?

777


What is ponter?

1020


What are linked lists in c?

857


write a program in c language to print your bio-data on the screen by using functions.

6530


What is c method?

744


Where register variables are stored in c?

743


Explain the difference between getch() and getche() in c?

742


What does & mean in scanf?

835


What are examples of structures?

788


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(); }

2068


What is the difference between malloc calloc and realloc in c?

895