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
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
can anyone please tell about the nested interrupts?
Who invented bcpl language?
What is the difference between a string and an array?
What is the difference between a function and a method in c?
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.
Explain how do you determine whether to use a stream function or a low-level function?
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?
Explain the difference between ++u and u++?
What is the usage of the pointer in c?
How is a pointer variable declared?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What tq means in chat?
Is exit(status) truly equivalent to returning the same status from main?
How to get string length of given string in c?