summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo <mokha@cisco.com>2016-06-21 12:42:09 -0400
committermo <mokha@cisco.com>2016-06-21 12:42:59 -0400
commit9385ac7a061771e123326500b1cbe37e2c086d89 (patch)
tree8635c9ccf9805f2b3efe08e07dfe0fe3ec8c2e37
parent5cfa2b1d9ed0ba4e35d051b1f5bd1ad8cae237fb (diff)
create hello.c
-rw-r--r--lab01/hello.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lab01/hello.c b/lab01/hello.c
new file mode 100644
index 0000000..c4176a7
--- /dev/null
+++ b/lab01/hello.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main()
+{
+ printf("\nHello World\n");
+ return 0;
+}