what is data structure?
Answers were Sorted based on User's Feedback
Answer / anandshan01
A data structure is particular way of storing and
organising data in a computer so that it can be
efficiently...
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / raju
ds is a collection of data elements and arranhed aspcific
manner
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / 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 |
Is c is a low level language?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
Why is structure padding done in c?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
How can I do serial ("comm") port I/O?
What do you mean by dynamic memory allocation in c?
program to find a smallest number in an array
What are formal parameters?
Explain how do you generate random numbers in c?
Why c is called a middle level language?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
When is a “switch” statement preferable over an “if” statement?