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
Explain what is the stack?
Can you please compare array with pointer?
What are identifiers in c?
If errno contains a nonzero number, is there an error?
Write a factorial program using C.
Explain what does the format %10.2 mean when included in a printf statement?
Define Spanning-Tree Protocol (STP)
Explain what is the difference between a string and an array?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
How do we declare variables in c?
What is the explanation for the dangling pointer in c?
Explain how can a program be made to print the line number where an error occurs?
What is a wrapper function in c?
How are Structure passing and returning implemented by the complier?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same