Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2.  
  3. #define SIZE (1 << 4)
  4. int main()
  5. {
  6.     int x, y, i;
  7.     for (y = SIZE - 1; y >= 0; y--, putchar('\n')) {
  8.         for (i = 0; i < y; i++) putchar(' ');
  9.         for (x = 0; x + y < SIZE; x++)
  10.             printf((x & y) ? "  " : "* ");
  11.     }
  12.     return 0;
  13. }