Lets write a C program to merge two arrays into third array in alternative position.
Example: Expected Output
Enter 5 elements for array a
10
12
14
16
18
Enter 5 elements for array b
11
13
15
17
19
Merging arrays a & b into c in alternate position
Array elements of c is:
10
11
12
13
14
15
16
17
18
19
C Programming Interview / Viva Q&A List
C Programming: Beginner To Advance To Expert
0 Comments