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 / tejveer sambariya
data structure is a specialized format for organizing and storing data.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are header files and explain what are its uses in c programming?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
What does malloc () calloc () realloc () free () do?
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 variable in c example?
What is keyword with example?
Explain the Difference between the New and Malloc keyword.
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What does *p++ do? What does it point to?
Explain what is wrong with this program statement? Void = 10;
what are the 10 different models of writing an addition program in C language?
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
What is cohesion and coupling in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is queue in c?