Skip to main content

One dimensional array declaration in c language basic of array

One D array

**Definition of array**

Array can be define as a collection of data object which are stored in consecutive memory location with a common variable name.
                                                                                   or 

Array is the collection of similar data types or collection of similar entity stored in contiguous memory location.

**Initialization of array**

  1. Array can be made initialization at the time of declaration itself.
  2. The general form of array initialization is as below 

1.Data type array name[size]

2.Data type array name[size]={element1,element2,element3,.....}

Example:
int a[[4]={1,5,8,4}
char d[3]={'A','R',u'}


Program

#include"stdio.h"
int main()
{
int a[100],i,n;
printf("Enter the number of elements : ");
scanf("%d",&n);
printf("Enter the elements\n");
for(i=0;i<n;i++)
{
printf("Entre the a[%d] : ",i);
scanf("%d",&a[i]);
}
//show one-d array//
printf("1-D Array are:\n");
for(i=0;i<n;i++) 
{
printf("%d \t ",a[i]);
}
}

Output are:

Enter the number of elements : 5
Enter the elements
Entre the a[0] : 4
Entre the a[1] : 7
Entre the a[2] : 8
Entre the a[3] : 89
Entre the a[4] : 1
1-D Array are:
4        7       8       89      1


Program


#include"stdio.h"
int main()
{
int a[6]={23,4,56,45,32,3};
printf("Array are:\n");
for(int i=0;i<6;i++)
{
printf("%d\t",a[i]);
}
}
Output are:

Array are:
23      4       56      45      32      3



Comments

Popular posts from this blog

Two dimensional array in C language or matrix program in c language

 Two dimensional arrays: 1.Two dimensional array is known as matrix. 2.An array with two subscripts is termed as two-dimensional array. 3.We know that a one dimensional array can store a row of elements, so a two-dimensional array enables us to store multiple roes of elements. The syntax of declaring a two-dimensional array is : Data-type array name[row][column]; For reading value : for(k=0;k<4;k++) { for(l=0;l<3;l++) { scanf("%d",&a[k][l]); } } For displaying value : for(k=0;k<4;k++) { for(l=0;l<3;l++) { printf("%d",a[k][l]); } printf("\n"); } Simple Matrix Program : #include"stdio.h" int main() { int a[3][3]; int k,l; printf("Enter the array elements: \n"); for(k=0;k<3;k++)  //for reading value// { for(l=0;l<3;l++) { printf("Enter a[%d][%d] :",k,l); scanf("%d",&a[k][l]); } } printf("\n\nMatrix are: \n"); for(k=0;k<3;k++)  //for displaying value...

Matrix program or 2D Array in C language Transpose of Matrix program in C language

 Matrix program or 2D Array in C language  In C language ,A two dimensional array is also known as matrix .Today we will learn about Matrix  .We all know that we also use loop to define an array .We will create a matrix program using a nested for loop. 1.Matrix program in C language: /*MATRIX PROGRAM*/ #include"stdio.h" int main() { int a[10][10]; int r,c,k,l; printf("ENTER THE ROW AND COL:"); scanf("%d %d",&r,&c); printf("ENTER THE MATRIX ELEMENTS:"); for(k=0;k Output are: ENTER THE ROW AND COL:2 3 ENTER THE MATRIX ELEMENTS:ENTER a[0][0] : 2 ENTER a[0][1] : 5 ENTER a[0][2] : 7 ENTER a[1][0] : 8 ENTER a[1][1] : 6 ENTER a[1][2] : 1 MATRIX ARE: 2       5       7 8       6       1 2.Transpose of matrix in C language:                         Matrix    a a[0][0]= 4,   a[0][1]=1,   a[0][2]=8:...

Arithmetic program in C language || Calculator program in C language

  Calculator  program in C language .           First of all let us know its logic .how is this working . Now let's see it's process . In C language , %d is used to define it's integers and %f is used to define it's floats. In C language , the (+) sign is used as a plus , the (-) sign used as a minus , the (*) sign is used for multiplies and the (/) sign is used for division.                %0.2f it means any float value like 52.987 = 52.98.it show only 2 place of the decimal. PROGRAM                          /*ARITHMETIC PROGRAM IN C LANGUAGE*/ #include"stdio.h" int main() { float a,b,sum,sub,mult,div ; char sign; printf("SELECT ANY SIGN (+ - * / ) :"); scanf("%c",&sign); printf("ENTER THE FIRST NUMERIC VALUE:"); scanf("%f",&a); printf("ENTER THE SECOND NUMERIC VALUE:"); scanf("%f",&b); switch(sign) { case '+':...