Created
November 6, 2017 14:58
-
-
Save rvndbalaji/f65981354327a58f058d73ac21292397 to your computer and use it in GitHub Desktop.
A C Program that produces the Map of India as output
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> | |
int main() | |
{ | |
int a = 10, b = 0, c = 10; | |
char* str = "TFy!QJu ROo TNn(ROo)SLq SLq ULo+UHs UJq " | |
"TNn*RPn/QPbEWS_JSWQAIJO^NBELPeHBFHT}TnALVlBL" | |
"OFAkHFOuFETpHCStHAUFAgcEAelclcn^r^r\\tZvYxXyT|S~Pn SPm " | |
"SOn TNn ULo0ULo#ULo-WHq!WFs XDt!"; | |
while (a != 0) | |
{ | |
a = str[b++]; | |
while (a-- > 64) | |
{ | |
if (++c == 90) | |
{ | |
c = 10; | |
putchar('\n'); | |
} | |
else | |
{ | |
if (b % 2 == 0) | |
putchar('!'); | |
else | |
putchar(' '); | |
} | |
} | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment