Difference between data structure and data base.
Answer Posted / rajesh
Data structure is a collection of different data items and
data base is a collection of records.
In data structures like stack, queue etc, we enter or take
data from any one side only but in data base we enter or
take data from any where.
| Is This Answer Correct ? | 57 Yes | 26 No |
Post New Answer View All Answers
What does int main () mean?
How do you print only part of a string?
Array is an lvalue or not?
Explain heap and queue.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How do you generate random numbers in C?
Why is c called c not d or e?
What is the difference between fread buffer() and fwrite buffer()?
What is the explanation for modular programming?
Differentiate between a for loop and a while loop? What are it uses?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Write a program to swap two numbers without using the third variable?
Multiply an Integer Number by 2 Without Using Multiplication Operator
What does void main return?