Skip to content

Instantly share code, notes, and snippets.

@brycelelbach
Created October 19, 2010 20:41
Show Gist options
  • Select an option

  • Save brycelelbach/635065 to your computer and use it in GitHub Desktop.

Select an option

Save brycelelbach/635065 to your computer and use it in GitHub Desktop.
#include <cstdio>
int main (void) {
char buffer[35];
for (char i = 0; i < 34; ++i) buffer[i] = 'f';
buffer[34] = '\0';
printf("%s\n", buffer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment