1 What is a Data Structure?
Answer / 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 |
Explain main function in c?
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
How can I sort a linked list?
write a program to interchange the value between two variable without using loop
What are the types of type qualifiers in c?
how can make variable not in registers
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
what is the stackpointer
C program to find all possible outcomes of a dice?
write a program to generate 1st n fibonacci prime number
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
What is function prototype?