Also, it's easy to make a C program return the number of characters printed and doesn't hurt readability:
#include <stdio.h> int main(void) { return printf("hello, world\n"); }