what is Array?

Answers were Sorted based on User's Feedback



what is Array?..

Answer / lakshmi

it is a grouped item of consequitive memory elements with
similar type of values.

Is This Answer Correct ?    7 Yes 0 No

what is Array?..

Answer / lakshmi

Array is the group of consequitive elements with same type.

Is This Answer Correct ?    7 Yes 2 No

what is Array?..

Answer / guest

collection of element in continuous memory location

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

Explain the Difference between the New and Malloc keyword.

0 Answers   InterGraph,


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

3 Answers  


#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

0 Answers  


Do you know what are bitwise shift operators in c programming?

0 Answers  


main() { int a; a=++100; printf("%d",a); getch(); }

4 Answers  






What are the 5 organizational structures?

0 Answers  


1. Write a program to reverse every second word in a given sentence.

1 Answers  


What are Macros? What are its advantages and disadvantages?

0 Answers   TCS,


Write a program of prime number using recursion.

0 Answers   Aspiring Minds,


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

0 Answers   TCS,


How can I increase the allowable number of simultaneously open files?

1 Answers   CSC,


Can we access the array using a pointer in c language?

0 Answers  


Categories