English, asked by beeravalli99, 3 months ago

write a program for two arrays in c​

Answers

Answered by meenagotiwale
0

C program to merge two sorted arrays

1) int main() { int a[100], b[100], m, n, c, sorted[200]; ...

2) printf("Input %d integers\n", m); for (c = 0; c < m; c++) { ...

3) printf("Input %d integers\n", n); for (c = 0; c < n; c++) { ...

4) for (c = 0; c < m + n; c++) { ...

5) void merge(int a[], int m, int b[], int n,int sorted[]) {

HEY!!! HERE'S YUR ANSWER

HOPE IT HELPS YOU

MARK AS BRAINLIEST ANSWER PLZ

Similar questions