what is the use of a array in c
Answers were Sorted based on User's Feedback
An array is a collection of similar elements(data types).
These similar elements could be all ints, or all floats, or
all chars, etc.
In an array all elements must e of same types.
In simple language, Arrays are used to give 'one' variable
the power to hold 'more than 1' values.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sameer
to have a collection of similar dta types in one varible
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / saravanan j (srm universi
array concept is used to locate the memory allocation for
the variables
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / abeera amin
array are data structure in which identical data type are
stored.and have contiguous area of memory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shruti
Array is a collection of homogeneous data-types..
| Is This Answer Correct ? | 0 Yes | 1 No |
Write a program of prime number using recursion.
what is the advantage of software development
What is malloc() function?
write a c program to find the sum of five entered numbers using an array named number
What are the languages are portable and platform independent?Why they are like that?
What is the difference between a function and a method in c?
write a program to create a sparse matrix using dynamic memory allocation.
List a few unconditional control statement in c.
what is an inline function?
What are the header files used in c language?
print the palindrome numbers in between 0 to n
What is an arrays?