diff --git a/hello2.c b/hello2.c new file mode 100644 index 0000000..ee0e57d --- /dev/null +++ b/hello2.c @@ -0,0 +1,11 @@ +#include +#include + +int main(void) { + if(puts("Hello, world!")==EOF) { + return EXIT_FAILURE; + // Code here never executes + } + return EXIT_SUCCESS; + // Code here never exectues +}