Unique program for Indian developers.



Nothing much to say about this code, just want to say, Jai Hind.
I'm sharing this code below it's written in C. This code is meant to display India's map.

Code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
    #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;
    }  

Output:


Comment Below, If you are facing any problem in this program. Don't forget to tell me what do you think about this program.

 You may also like this

Labels: