Advertisement
BeamNG_IRC

Untitled

Aug 16th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.86 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. // cards array
  4.  
  5. char *Spades[13] = {
  6.  
  7. "🂡", "🂢",
  8. "🂣", "🂤",
  9. "🂥", "🂦",
  10. "🂧", "🂨",
  11. "🂩", "🂪",
  12. "🂫", "🂭",
  13. "🂮",
  14.  
  15. };
  16.  
  17. char *Hearts[13] = {
  18.  
  19.     "🂱", "🂲",
  20.     "🂳", "🂴",
  21.     "🂵", "🂶",
  22.     "🂷", "🂸",
  23.     "🂹", "🂺",
  24.     "🂻", "🂽",
  25.     "🂾"
  26.  
  27.     };
  28.  
  29. char *Diamonds[13] = {
  30.  
  31.     "🃁", "🃂",
  32.     "🃃", "🃄",
  33.     "🃅", "🃆",
  34.     "🃇", "🃈",
  35.     "🃉", "🃊",
  36.     "🃋", "🃍",
  37.     "🃎",
  38.  
  39. };
  40.  
  41. char *Clubs[13] = {
  42.  
  43.     "🃑", "🃒",
  44.     "🃓", "🃔",
  45.     "🃕", "🃖",
  46.     "🃗", "🃘",
  47.     "🃙", "🃚",
  48.     "🃛", "🃝",
  49.     "🃞",
  50.  
  51. };
  52.  
  53. main (int argc, char **argv) {
  54.  
  55.     if (argc < 2) {
  56.  
  57.         printf("This program will generate a field of cards.\nusage: TBA\n");
  58.         return 0;
  59.  
  60.     }
  61.  
  62. return 0;
  63.  
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement