c/hello2.c

12 lines
208 B
C
Raw Permalink Normal View History

2023-01-13 13:00:19 +00:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
if(puts("Hello, world!")==EOF) {
return EXIT_FAILURE;
// Code here never executes
}
return EXIT_SUCCESS;
// Code here never exectues
}