modernc.org/ccgo/v3@v3.16.14/lib/testdata/tcc-0.9.27/tests/tests2/29_array_address.c (about) 1 #include <stdio.h> 2 #include <string.h> 3 4 int main() 5 { 6 char a[10]; 7 strcpy(a, "abcdef"); 8 printf("%s\n", &a[1]); 9 10 return 0; 11 } 12 13 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/