sound.c:
#include <stdio.h> #include <math.h> int main() { int t; for ( t=0; ; t++ ) putchar( t*((t>>9|t>>13)&25&t>>6) ); }
$ gcc sound.c && ./a.out | aplay -
sound.c:
Then to compile and run: