Answer Posted / nashiinformaticssolutions
A data structure is a type of storage format that specifies how information is arranged, saved, and worked with.
Trees, graphs, and arrays are a few well-known data structures.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the condition that is applied with ?: Operator?
Explain what is the purpose of "extern" keyword in a function declaration?
Explain how do you determine a file’s attributes?
How can you call a function, given its name as a string?
How do you sort filenames in a directory?
What is the use of pragma in embedded c?
What does double pointer mean in c?
Describe newline escape sequence with a sample program?
program for reversing a selected line word by word when multiple lines are given without using strrev
Write a program to identify if a given binary tree is balanced or not.
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
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.
Explain how can a program be made to print the name of a source file where an error occurs?
What is optimization in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }