Skip to main content
added 21 characters in body
Source Link

C, 29 28 2626 23 bytes

main(){formain(;;)putcharputs(0""));} 

-2 @steadybox

-3 @rtpatx

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

C, 29 28 26 bytes

main(){for(;;)putchar(0);} 

-2 @steadybox

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

C, 29 28 26 23 bytes

main(){main(puts(""));} 

-2 @steadybox

-3 @rtpatx

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

added 12 characters in body
Source Link

C, 29 2828 26 bytes

main(){for(;;){putchar(0);}} 

-2 @steadybox

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

C, 29 28 bytes

main(){for(;;){putchar(0);}} 

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

C, 29 28 26 bytes

main(){for(;;)putchar(0);} 

-2 @steadybox

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

added 9 characters in body
Source Link

C, 2929 28 bytes

main(){whilefor(1;;){putchar(0);}} 

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

C, 29 bytes

main(){while(1){putchar(0);}} 

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

C, 29 28 bytes

main(){for(;;){putchar(0);}} 

gcc won't like it, but it compiles.

Outputs null bytes continuously. You can swap out the 0 for anything 0-9.

You can use 7 if you really hate your speakers.

Source Link
Loading