summaryrefslogtreecommitdiff
path: root/hello.c
diff options
context:
space:
mode:
authorAdam Carpenter <53hornet@gmail.com>2019-05-10 16:00:12 -0400
committerAdam Carpenter <53hornet@gmail.com>2019-05-10 16:00:12 -0400
commit2c345e0909a082b77be959a4e6166cdbdc79e067 (patch)
tree4d9ff5a2884e5b87b8c0cb8e7fa358e3a9625eb4 /hello.c
downloadlearning-c-2c345e0909a082b77be959a4e6166cdbdc79e067.tar.xz
learning-c-2c345e0909a082b77be959a4e6166cdbdc79e067.zip
Init.
Diffstat (limited to 'hello.c')
-rw-r--r--hello.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/hello.c b/hello.c
new file mode 100644
index 0000000..b1ad928
--- /dev/null
+++ b/hello.c
@@ -0,0 +1,8 @@
+#include<stdio.h>
+
+main() {
+ printf("hello, ");
+ printf("world.");
+ printf("\n");
+}
+