Program to find the sum of two array into the third in C-language
#include<stdio.h>
int main()
{
int i,a[10],n,b[10],c[10];
printf("Enter the size limit maximum is 10\n");
scanf("%d",&n);
printf("Enter the First array element\n");
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}
printf("Enter the second array element\n");
for(i=0;i<n;i++)
{
scanf("%d",&b[i]);
}
printf("Sum of array is\n");
for(i=0;i<n;i++)
{
c[i]=a[i]+b[i];
printf("%d ",c[i]);
}
}
OUTPUT
Enter the size limit maximum is 10
4
Enter the First array element
12
3
4
6
Enter the second array element
6
5
4
3
Sum of array is
18 8 8 9
Comments
Post a Comment