BGBUFSIZE
strncpy(bigrams, argv[0], BGBUFSIZE);
bigrams[BGBUFSIZE] = '\0';
if (fwrite(bigrams, 1, BGBUFSIZE, stdout) != BGBUFSIZE)
static char bigrams[BGBUFSIZE + 1] = { 0 };