#include<stdio.h> #include<conio.h> void main() { void read(int *,int); void display(int *,int); void addarray(int * ,int *,int * ,int); int a[5],b[5],c[5],i; clrscr(); printf("Enter the elements for first array \n"); read(a,5); printf("Enter the elements for second array \n"); read(b,5); addarray(a,b,c,i); printf("The sum corresponding element of both array is : \n"); display(c,5); getch(); } void addarray(int a[],int b[],int c[],int i) { for(i=0;i<5;i++) { c[i]=a[i]+b[i]; } } void read(int c[],int i) { int j; for(j=0;j<i;j++) scanf(" %d",&c[j]); } void display(int d[],int i) { int j; for(j=0;j<i;j++) printf(" %d\n",d[j]); }
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.