what does data structure mean?
Answers were Sorted based on User's Feedback
Answer / <<123>>
data structure is a way of storing data in a computer so
that it can be used efficiently.
| Is This Answer Correct ? | 23 Yes | 1 No |
Answer / richa
and also by default static variable is initialised to
zero...
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / ajay009ajay@yahoo.co.in
every group of element be arranged in either mathematical or
logical way, understanding of mathematical or logical way
are known as data structure.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / baskar.m
An organization of information, usually in memory, for
better algorithm efficiency, such as queue, stack, linked
list, heap, dictionary, and tree, or conceptual unity, such
as the name and address of a person. It may include
redundant information.
what does data structure mean?
Answer
# 3 every group of element be arranged in either
mathematical or
logical way, understanding of mathematical or logical way
are known as data structure.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / rose
An organization of information, usually in memory, for
better algorithm efficiency, such as queue, stack, linked
list, heap, dictionary, and tree, or conceptual unity, such
as the name and address of a person. It may include
redundant information.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / jarke
Data structure is an organized way of storing and
retrieving data or information that includes different
methods like queues,stack,link list,tree etc.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / dippi
data structure is a structure in which elements having
different datatypes can be kept
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / irfan ullah(pak)
Data structure is an organization of data in computer memory to minimize memory wastage and improve processing speed.
| Is This Answer Correct ? | 0 Yes | 0 No |
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
Hi, main() { } Is a user defined function or Built in Functionn
How would you write qsort?
i have a written test for microland please give me test pattern
Can we use visual studio for c?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
How do we open a binary file in Read/Write mode in C?
What is the c language function prototype?
how can i get this by using for loop? * ** * **** * ******
What is a const pointer?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.