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 |
Difference Between embedded software and soft ware?
Write a program to show the change in position of a cursor using c
int i=10; printf("%d %d %d", i, i=20, i);
Can an array be an Ivalue?
Why dont c comments nest?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
Explain Basic concepts of C language?
Can i use Two or More Main Funtion in any C program.?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
What is a built-in function in C?
What are the primitive data types in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?