Skip to content

Instantly share code, notes, and snippets.

@sophec
Last active May 28, 2026 17:39
Show Gist options
  • Select an option

  • Save sophec/b412a6d21324b4ef6dd416bec849bf0d to your computer and use it in GitHub Desktop.

Select an option

Save sophec/b412a6d21324b4ef6dd416bec849bf0d to your computer and use it in GitHub Desktop.
Just a standard hello world program in C
#include <stdio.h>
static char a[65535] = {0};
static char* p = a;
int main() {
*p += 8;
for (; *p;) {
*++p += 4;
for (; *p;) {
*++p += 2;
*++p += 3;
*++p += 3;
++*++p;
--*(p -= 4);
}
++*++p;
++*++p;
--*++p;
++*(p += 2);
for (; *p;) {
--p;
}
--*--p;
}
p += 2;
putchar(*p);
*++p -= 3;
putchar(*p);
*p += 7;
putchar(*p);
putchar(*p);
*p += 3;
putchar(*p);
p += 2;
putchar(*p);
--*--p;
putchar(*p);
--p;
putchar(*p);
*p += 3;
putchar(*p);
*p -= 6;
putchar(*p);
*p -= 8;
putchar(*p);
++*(p += 2);
putchar(*p);
*++p += 2;
putchar(*p);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment