what is array?

Answers were Sorted based on User's Feedback



what is array?..

Answer / rohit

array is a collection of similar data types.

Is This Answer Correct ?    5 Yes 1 No

what is array?..

Answer / jiten patel

Array is a group of entity which stores similar types of data.

Is This Answer Correct ?    4 Yes 0 No

what is array?..

Answer / lucky

array is a collection of similar type of data

Is This Answer Correct ?    1 Yes 0 No

what is array?..

Answer / abhi

array is such static collection of data which store data
member of same datatype

Is This Answer Correct ?    1 Yes 0 No

what is array?..

Answer / nayanprakash

Arry is a collection of similar data type.

Is This Answer Correct ?    0 Yes 0 No

what is array?..

Answer / dev

array is a reference variable which stores similar type of data

Is This Answer Correct ?    1 Yes 1 No

what is array?..

Answer / balu

array is a collection of variables with similar data type;
syntax: data type array name[size];
example: int a[5];

Is This Answer Correct ?    0 Yes 0 No

what is array?..

Answer / raj

Pointers and arrays are inseparably related, but they are
not synonyms for each other. Starting with this post, we
will look into one-dimensional array, it’s storage pattern,
how the array elements are accessed. And lastly, we look
into a new feature of C99: the variable length array.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Interview Questions

Which is better between malloc and calloc?

0 Answers  


What is difference between && and & in c?

0 Answers  


Why c is a mother language?

0 Answers  


Why is %d used in c?

0 Answers  


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  


Is stack a keyword in c?

0 Answers  


What is a Genralised LInked List?? Please give a detailed explation of it..

1 Answers  


What are different storage class specifiers in c?

0 Answers  


there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?

1 Answers  


ratio,age,persentage

0 Answers  


#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?

16 Answers   Accel Frontline, Opera, Oracle,


In C programming, what command or code can be used to determine if a number of odd or even?

0 Answers  


Categories