CS360 Midterm -- October 18, 2000. Question 1

Convert the following to assembly code. Do not perform optimization -- just do a straightforward conversion:
main(int argc, char **argv)
{
  char s[16];
  char *x;

  x = strcpy(s, argv[1]);
  puts(x);
}