This example describes how to use array in c language.
Syntax:
Declaration: Datatype array_name [size];
Initialization: array_name[size];
Example:
- #include <stdio.h>
- int main ()
- {
- int n[ 10 ]; // n is an array of 10 integers
- int i,j;
- for ( i = 0; i < 10; i++ )
- {
- n[ i ] = i + 100; // set element at location i to i + 100
- }
- for (j = 0; j < 10; j++ )
- {
- printf("Element[%d] = %d\n", j, n[j] );//Print each array element on console
- }
- return 0;
- }
Description:
In this example we first simply declare an array for 10 elements, initialize it using for loop, and print all the elements on console.
Line 4: This line declares an array of 10 elements.
Line 5: Declares variable
Line 6 to 9: Initializes array from 100 to 109 values,
Line 10 to 13 :Prints value of this array. Here " %d " is used because array is of datatype "int".
n[j] means j position of element in the list formed in "n[]" array.
मराठीत वर्णन :
ह्या उधर्णात आपण सोप्या पद्धतीने अररे मध्ये किंमत टाकलेली आहे व त्या किंमत कन्सोल वर दाखवली आहे .
ओळ ४: ही ओळ मुळे मेमरी मध्ये १० अंकांची जागा बनते. हे आधी लिहिन आवश्यक आहे .
ओळ ५: ह्यात वरिएब्ल साठी मेमरी मध्ये जागा तयार होते.
ओळ ६ ते ९; अर्रे मध्ये १०० ते १०९ हे अंक टाकले आहे.
ओळ १० ते १३: सगळी अर्रे मध्ये जमा केलेली किंमत कन्सोलवर लिहिली जते.
Line 4: This line declares an array of 10 elements.
Line 5: Declares variable
Line 6 to 9: Initializes array from 100 to 109 values,
Line 10 to 13 :Prints value of this array. Here " %d " is used because array is of datatype "int".
n[j] means j position of element in the list formed in "n[]" array.
मराठीत वर्णन :
ह्या उधर्णात आपण सोप्या पद्धतीने अररे मध्ये किंमत टाकलेली आहे व त्या किंमत कन्सोल वर दाखवली आहे .
ओळ ४: ही ओळ मुळे मेमरी मध्ये १० अंकांची जागा बनते. हे आधी लिहिन आवश्यक आहे .
ओळ ५: ह्यात वरिएब्ल साठी मेमरी मध्ये जागा तयार होते.
ओळ ६ ते ९; अर्रे मध्ये १०० ते १०९ हे अंक टाकले आहे.
ओळ १० ते १३: सगळी अर्रे मध्ये जमा केलेली किंमत कन्सोलवर लिहिली जते.