Voici une des solutions possibles:
#include <stdio.h> /* Notre premier programme en C */ main() { printf("hello, "); printf("world"); printf("\n"); return 0; }