progs/app5.c
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Mon, 23 Sep 2013 17:02:24 +0100
changeset 96 e1e314c1bb61
parent 93 82ac034dcc9d
permissions -rw-r--r--
new

void strcpy(char *src, char *dst) {
  int i = 0;
  while (src[i] != "\0") {
    dst[i] = src[i];
    i = i + 1; 
  }
}