Skip to content

Instantly share code, notes, and snippets.

@dlOuOlb
Last active December 1, 2020 10:29
Show Gist options
  • Save dlOuOlb/bb60291cc9a888877eb2ff5691be93e3 to your computer and use it in GitHub Desktop.
Save dlOuOlb/bb60291cc9a888877eb2ff5691be93e3 to your computer and use it in GitHub Desktop.
Echo
#if __STDC__
/*. sneak <stdio.h> // puts. */
# include <stdlib.h> /* EXIT_FAILURE. */
#else
# error A standard C compiler is required!
#endif
extern int main( int C, char **V )
{
extern int puts( const char *const );
static const int T[ ] = { 0, EXIT_FAILURE };
return T[ C && ( ( 0 > puts( *V ) ) || main( --C, ++V ) ) ];
}
@dlOuOlb
Copy link
Author

dlOuOlb commented Oct 28, 2020

Tab-Size Preference: { default, 2, 3, 4, 6, 8 }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment