Q : Write a function which receives two integer arrays and creates a third array by multiplying corresponding elements (elements with same index) and returns it to main program.
Solution :
/*==============================
Girfa Student Help
Program : Multiply two array using function
More Program
:http://girfahelp.blogspot.in/p/function-programming.html
================================*/
#include<stdio.h>
#include<conio.h>
#define MAX 5
void mul(int *,int *,int *);
void print(int *);
void main()
{
int
ar1[MAX],ar2[MAX],ar3[MAX],i;
clrscr();
printf("\nInput f