gray_-_wolf

↗ HN profile [ 132 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. 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…