29_array_address.c 183 B

1234567891011121314
  1. #include <stdio.h>
  2. #include <string.h>
  3. int main()
  4. {
  5. char a[10];
  6. strcpy(a, "abcdef");
  7. printf("%s\n", &a[1]);
  8. return 0;
  9. }
  10. /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/