gray_-_wolf
- Karma
- 0
- Created
- ()
- Submissions
- 0
-
Following does not do what most people would expect: +$ cat main.c #include <stdio.h> int main(void) { char str[] = { 0, 'a' }; printf("`%.*s'\n", sizeof(str), str); return 0; } +$ gcc -o main main.c +$ ./main `' This…