2024-05-14 hello world hello.c hello.c123456#include <stdio.h>main(){ printf("hello, world\n");} 1234567$ cc hello.chello.c:3:1: warning: return type defaults to ‘int’ [-Wimplicit-int] 3 | main() | ^~~~$ ./a.outhello, world$ Newer The C Programming Language - annotation, 1 Older The C Programming Language - annotation, 0