solutions/The C Programming Language/1.1.c

9 lines
85 B
C
Raw Normal View History

2024-04-16 19:13:00 -04:00
#include <stdio.h>
main()
{
printf("hello,");
printf(" world");
printf("\n");
}