An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language

a) string

b) data structure

c) pointers

d) array


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is meaning of "Void main" in C Language.

24 Answers   Ford, GU, HCL, IBIBS, JUW, TCS,


int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]

6 Answers   Hughes,


Write a code on reverse string and its complexity.

0 Answers   Expedia,


write a program which will count occurance of a day between two dates.

1 Answers   IonIdea,


Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;

18 Answers   Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,






If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).

5 Answers   Microsoft, Motorola,


What is period operator in c?

3 Answers   Wipro,


How can I make a program in c to print 'Hello' without using semicolon in the code?

9 Answers   C DAC, Practical Viva Questions,


write the program for prime numbers?

73 Answers   Accenture, Aptech, Infosys, TCS,


What are the scope of static variables?

0 Answers  


what is the height of tree if leaf node is at level 3. please explain

0 Answers  


Can we initialize extern variable in c?

0 Answers  


Categories