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 void pointer? When is a void pointer used?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
what will be the output for the following main() { printf("hi" "hello"); }
What is that continue statement??
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
YBJBU6
What is sizeof array?
What is the difference between functions getch() and getche()?
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
What is the memory allocated by the following definition ? int (*x)[10];
What is Your Name :)
Explain what is the best way to comment out a section of code that contains comments?