Advertisement
Guest User

Simple C one-line player

a guest
Nov 14th, 2011
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2. void main(int argc, char *argv[])
  3. {
  4.     int t, mt=8000*5;
  5.     if (argc > 1)
  6.     {
  7.         mt = atoi(argv[1]) * 8000;
  8.     }
  9.     for (t=0;t<mt;t++)putchar(
  10.     /* Put T-expression in the line below */
  11.     (t>>7|t|t>>6)*10+4*(t&t>>13|t>>6)
  12.     );
  13. }
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement