mirror of
https://github.com/krislamo/knrc.git
synced 2024-11-10 00:30:35 +00:00
Kris Lamoureux
3e078042a4
I set a return type on the main function to clear a GCC warning in a slight deviation from the book.
7 lines
62 B
C
7 lines
62 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
printf("hello, world\n");
|
|
}
|