what is array?
Answers were Sorted based on User's Feedback
Answer / jiten patel
Array is a group of entity which stores similar types of data.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / abhi
array is such static collection of data which store data
member of same datatype
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nayanprakash
Arry is a collection of similar data type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dev
array is a reference variable which stores similar type of data
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / balu
array is a collection of variables with similar data type;
syntax: data type array name[size];
example: int a[5];
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raj
Pointers and arrays are inseparably related, but they are
not synonyms for each other. Starting with this post, we
will look into one-dimensional array, it’s storage pattern,
how the array elements are accessed. And lastly, we look
into a new feature of C99: the variable length array.
| Is This Answer Correct ? | 0 Yes | 2 No |
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
a simple c program using 'for' loop to display the output 5 4 3 2 1
Explain can static variables be declared in a header file?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
how to create duplicate link list using C???
What is the g value paradox?
How do you define a string?
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }