// overflow2.c
#include <stdio.h>
int main(int argc, char *argv[])
{
  char buf[5];
  strcpy(buf,argv[1]);
  printf("Output: %s\n",buf);
}

