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 are the advantages and disadvantages of a heap?
What are the different file extensions involved when programming in C?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is static volatile in c?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
0 Answers Aegis, CDAC, Infosys,
What is array of structure in c programming?
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
How can I get back to the interactive keyboard if stdin is redirected?
Can a void pointer point to a function?
Write a program to print the prime numbers from 1 to 100?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100