what is array?
Answers were Sorted based on User's Feedback
Answer / raja
an array is collection of similar data types, and it
occupies the memory in a sequence of order
| Is This Answer Correct ? | 6 Yes | 4 No |
Answer / durga
Array is a group of elements of same data type.
Elements are identified by subscript or indexed.
Java follows zero(0) based indexing.
Name of the array points to the base element of the first array.
Array elements are stored continiously.
All the array elements sharing the common name.
It is an derived data type.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kalidasan
Array is a object, it will allow to store multiple values in
one variable.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / nitian gopal
Array is a collection of similar data, that occupies a
contiuous merory.
Syntax:
type arryname[size];
exm:
int roll[52];
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / dhaval patel
An Array is a collection of variables of the same type that
are refered to through a common name.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / saroj kumar manik
array is collection of data element in hierchical way in
computer memory.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is a buffer in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the use of in c?
What is the difference between malloc() and calloc()?
wat are the two methods for swapping two numbers without using temp variable??
Hi can anyone tell what is a start up code?
Does * p ++ increment p or what it points to?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
Explain enumerated types.
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this