Skip to content

Instantly share code, notes, and snippets.

@takoeight0821
Created October 13, 2017 04:54
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 takoeight0821/5997efdb206691706df43fffa874f8e7 to your computer and use it in GitHub Desktop.
Save takoeight0821/5997efdb206691706df43fffa874f8e7 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
char flag[12];
flag[0] = 'F';
flag[1] = 'L';
flag[2] = 'A';
flag[3] = 'G';
flag[4] = '{';
flag[5] = 'h';
flag[6] = 'e';
flag[7] = 'l';
flag[8] = 'l';
flag[9] = 'o';
flag[10] = '}';
flag[11] = '\0';
puts("hello");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment