Difference between data structure and data base.
Answer Posted / shruthi chandran
Data Structure - How data are stored or arranged. For Example:- Are they arranged Linearly or non-Linearly. Linear means they are arranged one after the other in contigous memory locations. Examples include Arrays, Lists
Database is a collection of information that is organised so that it can be easly accessed,managed and updated
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What are the functions to open and close the file in c language?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Can a function argument have default value?
Explain what is the difference between the expression '++a' and 'a++'?
How can I direct output to the printer?
What is use of null pointer in c?
What is malloc return c?
What is the difference between abs() and fabs() functions?
Can 'this' pointer by used in the constructor?
Why are algorithms important in c program?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Explain how can I make sure that my program is the only one accessing a file?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What are the preprocessor categories?