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 simple c program using 'for' loop to display the output 5 4 3 2 1
What is difference between array and structure in c?
Should a function contain a return statement if it does not return a value?
What are the key features in c programming language?
what is the most appropriate way to write a multi-statement macro?
Explain the use of fflush() function?
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
Explain Linker and Loader
What is the significance of c program algorithms?
Diff between for loop and while loop?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }