Skip to content

Instantly share code, notes, and snippets.

@io12
Created September 2, 2017 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save io12/2f0de2620da135c20ade5313e70c16a8 to your computer and use it in GitHub Desktop.
Save io12/2f0de2620da135c20ade5313e70c16a8 to your computer and use it in GitHub Desktop.
// Prints a 4GB 'L'
#include <limits.h>
#include <stdio.h>
int main(void)
{
int i;
putchar('L');
for (i = 0; i < INT_MAX; i++) {
printf("͕");
}
putchar('\n');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment