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 |
There seem to be a few missing operators ..
Can we include one C program into another C program if yes how?
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
what is the difference between. system call and library function?
What is a pointer?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
What is putchar() function?
how to TOGGLE Nth bit of variable in a MACRO
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the memory allocated by the following definition ? int (*x)();
what is difference between strcmp & palindrome?