logoalt Hacker News

dlcarrieryesterday at 5:42 PM0 repliesview on HN

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");
    }