1
0
mirror of https://github.com/krislamo/knrc.git synced 2024-09-19 12:50:36 +00:00
knrc/01-hello-world.c
Kris Lamoureux 3e078042a4
Compile simple stdout message
I set a return type on the main function to clear a GCC warning
in a slight deviation from the book.
2021-11-03 00:02:07 -04:00

7 lines
62 B
C

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