Q : Write a program to merge two array into a single array?
/* #################################
Girfa Student Help
Merge two Array
Programmber : Vishal
For more program visit :
http://girfahelp.blogspot.in/p/c-language.html
#################################
*/
#include<stdio.h>
#include<conio.h>
#define MAX 5
void main()
{
int a1[MAX],a2[MAX],a3[MAX*2];
int i,j;
clrscr();
puts("First Array Input");
for(i=0;i<MAX;i++)