TOC | Prev | Next

Hello, world

hello.c

#include <stdio.h>
/* stdio.h is required for puts() */

int main( int argc, const char *argv[] ) {
    puts( "Hello, world!" );

    return 0;
}
TOC | Prev | Next