what is data structure.in linear and non linear data
structures which one is better?Explain
Answer Posted / ashi
A data structure is arrangement of data in a computer's
memory even disk storage linear data is better than non liner
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
What is a program flowchart and how does it help in writing a program?
What is %g in c?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
How variables are declared in c?
How can I write a function analogous to scanf?
How can I write a function that takes a format string and a variable number of arguments?
What are the two types of functions in c?
What are reserved words?
Write a program to generate random numbers in c?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
In a switch statement, explain what will happen if a break statement is omitted?
What is the hardest programming language?
How many levels of pointers have?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none