This website works better with JavaScript
Home
Explore
Help
Sign In
noah
/
texdiary
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
add c helloworld sample program
Noah Vogt
3 years ago
parent
ab36b96341
commit
5e9fc4228c
1 changed files
with
6 additions
and
0 deletions
Split View
Show Diff Stats
6
0
maturText/helloworld.c
+ 6
- 0
maturText/helloworld.c
View File
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World\n");
+ return 0;
+}