problems

India
October 17, 2006 7:58am CST
my problem is how to use arrays in c
7 responses
@dholey (1383)
• India
12 Oct 07
array is group of homogeneous variables sharing common name ans having unique element numbers (element number always begins with 0) ARRAY NAME STANDS FOR THE BASE ADDRESS OF THAT ARRAY .i.e when ony array name is written without element numbers then the address of the 0th element of that array is return what i mean is &ar[0] is same as ar!!!! when we use array name along with element number then it is taken as name of individual variable of that array ex: void main() { int ar[5],i; for(i=0;i
1 person likes this
• India
17 Oct 06
whats ur problem? can u explain a bit more?
• India
17 Oct 06
it is like that i cant undrestand that how to write programs int
• India
17 Oct 06
arrays are like normal variables...u can use them like u use normal variables...the only difference is that whenever u use arrays, u hav to use loops...
@mythmoh (3984)
• United States
17 Oct 06
Array are the collection of homogeneous dat item.It is used to save space and unwanted confusion about having lot of variables..For example 100 students marks.You can just denote it as mark[100] and it may be of integer or real data type.arrays can have all the basic data types.There are two dimensional and multidimensional arrays.
@inspiron (479)
• India
17 Oct 06
u will get tons of tutorial from net refer them
@inspiron (479)
• India
17 Oct 06
u will get tons of tutorial from net refer them
@istanto (8548)
• Indonesia
17 Oct 06
sorry, im not advance in c. good luck
@pontgtp (967)
• United States
17 Oct 06
I dont know, but good luck with that and welcome to Mylot