4381bb2a22
When the execution reaches the end of the main functions, they implicitly return a successful status.
6 lines
88 B
C
6 lines
88 B
C
#include <unistd.h>
|
|
|
|
int main(void) {
|
|
write(STDOUT_FILENO, "Hello World!\n", 13);
|
|
}
|