diff options
Diffstat (limited to 'ch01/ex01-hello.c')
| -rw-r--r-- | ch01/ex01-hello.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ch01/ex01-hello.c b/ch01/ex01-hello.c new file mode 100644 index 0000000..53f4080 --- /dev/null +++ b/ch01/ex01-hello.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main() +{ + printf("hello, world\n"); +} |
