what is an array

Answer Posted / srsabariselvan

an array is a collection of same type of data.
for eg:
list of student name,collection of roll numbers.
each element has unique id(index).
Declaration:
data_type a[size];
a[index]=number;
Eg:
int a[10];
a[0]=2;
a[1]=3;
.
.
.
a[9]=22;
printf("%d",a[9]);

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor

3213


can anyone please tell about the nested interrupts?

1853


Who invented bcpl language?

917


What is the difference between a string and an array?

899


What is the difference between a function and a method in c?

783


If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.

1979


Explain how do you determine whether to use a stream function or a low-level function?

817


If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

997


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

821


What is the usage of the pointer in c?

808


How is a pointer variable declared?

769


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

883


What tq means in chat?

821


Is exit(status) truly equivalent to returning the same status from main?

806


How to get string length of given string in c?

788