aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk5/lab4/arrayCat.cpp
blob: d711ba62066cfe1cd7221890396fed8c0ffecab1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
using namespace std;
void append (char first[], int l1, char second[], int l2, char result[200]);

int main () {
  char first[] = {'I', ' ', 'a', 'm', ' '};
  char second[] = {'i', 'r', 'o', 'n', 'm', 'a', 'n', '\0'};
  char result[200];
  append(first, 5, second, 8, result);
  cout << result << endl;
}

void append (char first[],int l1, char second[],int l2, char result[200]) {
  int length=0;
  for (int i=0; i<l1; i++) {
    result[length]=first[i];
    length++;
  }
  for (int i=0; i<l2; i++) {
    result[length]=second[i];
    length++;
  }
}