Arrays in C Programming

Arrays in C Programming: Array is a type of variable which can store multiple items of the same data type. In following simple program we will define an array of 10 elements. After that we will multiply each element of array with 5 and then we will output the value of each element of the array.

[js]

#include <stdio.h>

int main(void){

int arrayName[10] = {2,5,3,6,9,34,23,84,56,44}; // defined an array with 10 elements

//output each element of array
printf("Original values of the arraynn");
printf("Array indextttValuen");
for(int j=0; j<10; j++){
printf("%11dttt%4dn", j, arrayName[j]);
}

//multiplied each element of array with 5
for(int i=0; i<10; i++){
arrayName[i] = arrayName[i] * 5;
}

//output each element of array
printf("nnValues of the array after multiplicationnn");
printf("Array indextttValuen");
for(int j=0; j<10; j++){
printf("%11dttt%4dn", j, arrayName[j]);
}

return 0;
}

[/js]

 

Output:

3 thoughts on “Arrays in C Programming

Leave a Reply to syed ali raza Cancel reply

Your email address will not be published. Required fields are marked *