I've always wondered how I could get away with this:
int main(int argc, char **argv) {
printf("%p %s %d\n", &argv[1], argv[1], strlen(argv[1]));
char copy[strlen(argv[1])];
strcpy(copy, argv[1]);
printf("%p %s %d\n", ©, copy, strlen(copy));
return 0;
}
The char array "copy" gets allocated anyway and the program runs fine, printing out the original and the copy. (and valgrind doesn't complain about anything)
I thought "dynamic" arrays weren't possible in C without malloc?

char copy[strlen(argv[1]) + 1];– Joe Jul 11 '11 at 21:30