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

what is the difference between unix os and linux os

4 Answers  


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

2 Answers  


How to use c/c++ code in JAVA

10 Answers   CDAC, IBM, Satyam, Scope International,


What is a MAC Address?

0 Answers  


What are the preprocessors?

9 Answers   HP,






I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...

0 Answers  


What is the difference between a string and an array?

0 Answers  


second highest number in a given set of numbers

3 Answers   TCS,


what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }

3 Answers  


#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }

3 Answers   Zoho,


Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.

0 Answers  


is c language is a object oreinted language?

5 Answers   TCS,


Categories