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

Post New Answer

More C Interview Questions

How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?

2 Answers  


Write a program to check armstrong number in c?

0 Answers  


What do mean by network ?

0 Answers  


Explain the properties of union.

0 Answers  


an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

0 Answers  






Explain how are 16- and 32-bit numbers stored?

0 Answers  


Explain the difference between ++u and u++?

0 Answers  


Write a pro-gramme to determine whether the number is even or odd?

1 Answers  


Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.

0 Answers  


which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;

5 Answers   Assurgent, TCS,


int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }

1 Answers  


What is context in c?

0 Answers  


Categories