progs/C1.c
author cu
Sat, 28 Oct 2017 00:02:06 +0100
changeset 559 a2d690dde419
parent 220 74772c30e0f4
permissions -rw-r--r--
updated cw

#include <string.h>
#include <stdio.h>
#include <stdlib.h>

void dead () {
  printf("I will never be printed!\n");
  exit(1);
}

void foo(char *bar) {
  char buffer[8];
  strcpy(buffer, bar);
}

int main(int argc, char **argv) {
  foo(argv[1]);
  return 1;
}