Skip to content

Instantly share code, notes, and snippets.

@axayjha
Created September 10, 2016 15:34
Show Gist options
  • Save axayjha/3f1bd36c46a2d3c70cabdd37cca0179c to your computer and use it in GitHub Desktop.
Save axayjha/3f1bd36c46a2d3c70cabdd37cca0179c to your computer and use it in GitHub Desktop.
#define decode(s,t,u,m,p,e,d) \
m ## s ## u ## t
#define begin decode(a,n,i,m,a,t,e)
#define execute decode(I, E, L, F, U, C, K)
#define encode(b,y,t,e,c,o,d) \
b ## c ## t ## e ## d
#define ouput encode(w, a, i, l, h, y, e)
#define encrypt encode(f,a,p,e,o,n,n)
#include <stdio.h>
int main()
{
execute *program;
program = encrypt("cipher.txt", "w+");
printf("Loading...Wait a moment...\n");
ouput('ready') fprintf(program, "<Your Text>");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment