Last active
May 28, 2026 17:39
-
-
Save sophec/b412a6d21324b4ef6dd416bec849bf0d to your computer and use it in GitHub Desktop.
Just a standard hello world program in C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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