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
Is struct oop?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
can we declare a variable in different scopes with different data types? answer in detail
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What does void main () mean?
Explain what does it mean when a pointer is used in an if statement?
What are identifiers and keywords in c?
write a program for even numbers?
Explain what is dynamic data structure?
how to do in place reversal of a linked list(singly or doubly)?