Skip to content

Instantly share code, notes, and snippets.

@vishal-keshav
Created June 8, 2019 16:10
Show Gist options
  • Save vishal-keshav/2ed170385ea50eb29c8f9bcf9dc80c8e to your computer and use it in GitHub Desktop.
Save vishal-keshav/2ed170385ea50eb29c8f9bcf9dc80c8e to your computer and use it in GitHub Desktop.
Cool map of india
#include "stdio.h"
int main (void) {
int a=10, b=0, c=10;
char* bits ="TFy!QJu ROo TNn(ROo)SLq SLq ULo+UHs UJq TNn*RPn/QPbEWS_JSWQAIJO^NBELPeHBFHT}TnALVlBLOFAkHFOuFETpHCStHAUFAgcEAelclcn^r^r\\tZvYxXyT|S~Pn SPm SOn TNn ULo0ULo#ULo-WHq!WFs XDt!";
a = bits[b];
while (a != 0) {
a = bits[b];
b++;
while (a > 64) {
a--;
if (++c == 'Z') {
c /= 9;
putchar(c);
} else {
putchar(33 ^ (b & 0x01));
}
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment