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 |
What is the correct declaration of main?
What is cohesion in c?
What is a example of a variable?
what is difference between #include<stdio.h> and #include"stdio.h"
What is a pointer variable in c language?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Difference between constant pointer and pointer to a constant.
Reverse a string word by word??
write a program which will count occurance of a day between two dates.
What is the ANSI C Standard?
How will you find a duplicate number in a array without negating the nos ?
write a program to print sum of each row of a 2D array.