Answer Posted / abir maiti
An array is a linear data structure of homogeneous elements.
Homogeneous means, every element will be of same data type,
may of int type or of float type or of char type. Any array
will be stored in consecutive memory locations. Array
elements are accessed using index starting from 0. Array can
be one or multidimensional.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does %d do in c?
How can I send mail from within a c program?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What do you mean by a local block?
Explain why can’t constant values be used to define an array’s initial size?
Why do we need functions in c?
Explain how do you print only part of a string?
Explain the use of #pragma exit?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is the purpose of ftell?
Write a program to know whether the input number is an armstrong number.
What are the general description for loop statement and available loop types in c?
please send me the code for multiplying sparse matrix using c
What is integer constants?
What is gets() function?