1.What is a Data Structure? Explain its need?
2.What is a Directed Graph? Write an algorithm to find
whether a Directed Graph is connected or not?
3.Explain the process of converting a Tree to a Binary Tree.
Answer Posted / mallikharjuna rao k
Data Structure is a collection of logical and mathematical
representation of data.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is substring in c?
What is #include cctype?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
What is the size of enum in c?
How can I read/write structures from/to data files?
What is dynamic variable in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is C language ?
what is the difference between 123 and 0123 in c?
How can I read and write comma-delimited text?
Explain how can a program be made to print the line number where an error occurs?
Explain how do you use a pointer to a function?
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
Is null a keyword in c?
How can my program discover the complete pathname to the executable from which it was invoked?