what is an array

Answer Posted / mukul garg

an array is a collectiom of similar data types .an array
index always stsrt from zero if the size of array is n then
it can store n elements .
int a[5]={1,2,3,4,5};

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.

14972


What is the auto keyword good for?

631


difference between native and cross compilers

1673


Who developed c language?

644


Explain the difference between #include "..." And #include <...> In c?

635






Explain what is the stack?

639


Is c is a low level language?

568


What are register variables in c?

577


What is typedef struct in c?

592


Explain goto?

722


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1362


Why do we need functions in c?

565


What is the use of a static variable in c?

596


Explain which function in c can be used to append a string to another string?

594


Under what circumstances does a name clash occur?

697