solutions/The C Programming Language/1.1.c

9 lines
85 B
C

#include <stdio.h>
main()
{
printf("hello,");
printf(" world");
printf("\n");
}