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 |
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How can I trap or ignore keyboard interrupts like control-c?
write a program to print largest number of each row of a 2D array
Write a C program to print 1 2 3 ... 100 without using loops?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What is the purpose of the statement: strcat (S2, S1)?
please give me some tips for the placement in the TCS.
What is data structure in c and its types?
How to convert decimal to binary in C using recursion??
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
While(1) { } when this loop get terminate is it a infinite loop?