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 |
Which is better between malloc and calloc?
What is difference between && and & in c?
Why c is a mother language?
Why is %d used in c?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
Is stack a keyword in c?
What is a Genralised LInked List?? Please give a detailed explation of it..
What are different storage class specifiers in c?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
ratio,age,persentage
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
In C programming, what command or code can be used to determine if a number of odd or even?