Addig hello2

This commit is contained in:
Scott C. MacCallum 2023-01-13 08:00:19 -05:00
parent 851ad110a8
commit 8d124e4e32
1 changed files with 11 additions and 0 deletions

11
hello2.c Normal file
View File

@ -0,0 +1,11 @@
#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
}