Skip to content

Instantly share code, notes, and snippets.

@vinitshahdeo
Created March 3, 2019 09:46
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 vinitshahdeo/28665b5a010b92cf96cd1abced0a2a9e to your computer and use it in GitHub Desktop.
Save vinitshahdeo/28665b5a010b92cf96cd1abced0a2a9e to your computer and use it in GitHub Desktop.
Coder's way of wishing Happy Birthday
/*
@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