Skip to main content
added 40 characters in body
Source Link
gastropner
  • 4.5k
  • 1
  • 17
  • 20

C (gcc), 5353 52 bytes

Note the space after #endif.

n;main(){putchar(n+49);} #if __LINE__>7 n=2; #endif//  

Try it online!Try it online!

C (gcc), 53 bytes

n;main(){putchar(n+49);} #if __LINE__>7 n=2; #endif// 

Try it online!

C (gcc), 53 52 bytes

Note the space after #endif.

n;main(){putchar(n+49);} #if __LINE__>7 n=2; #endif  

Try it online!

Source Link
gastropner
  • 4.5k
  • 1
  • 17
  • 20

C (gcc), 53 bytes

n;main(){putchar(n+49);} #if __LINE__>7 n=2; #endif// 

Try it online!