#Merge Two arrays in C Programming
1 posts
Write C Program to Merge Two arrays in C Programming
Program : C Program to Merge Two arrays in C Programming
#include<stdio.h>
int main() {
int arr1[30], arr2[30], res[60];
int i, j, k, n1, n2;
printf("\nEnter no of elements in 1st arr... Read Mores
Prathmesh Yelne
17-Jan-2022 9:28:10