Created
March 3, 2019 09:46
-
-
Save vinitshahdeo/28665b5a010b92cf96cd1abced0a2a9e to your computer and use it in GitHub Desktop.
Coder's way of wishing Happy Birthday
This file contains 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
/* | |
@author vinitshahdeo | |
*/ | |
#include <stdio.h> | |
char *secret = "ziBbeqjAs+cu"; | |
unsigned long message = 10521325414783145265U; | |
int main(void) { | |
while (message) { | |
putchar(secret[message & 15] - 33); | |
message >>= 4; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment