c_book
Code
Branches
Tags
Commits
Commit
5546862
mo khan <mo@mokhan.ca>
2014-02-09
22:15:52
create hello world program.
main
Changed files (1)
hello.c
hello.c
@@ -0,0 +1,6 @@
+#include "stdio.h"
+
+int main()
+{
+ printf("hello, world\n");
+}