a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation
a) circular
b) ordinary
c) array
d) linear list
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between malloc() and calloc()?
write a programming in c to find the sum of all elements in an array through function.
why arithmetic operation can’t be performed on a void pointer?
What header files do I need in order to define the standard library functions I use?
what is an inline fuction??
What is the difference between variable declaration and variable definition in c?
Explain what is dynamic data structure?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
can we change the default calling convention in c if yes than how.........?
whitch value return void main?
How can you increase the size of a statically allocated array?
Explain how do I determine whether a character is numeric, alphabetic, and so on?