This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
noah
/
texdiary
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ソースを参照
add c helloworld sample program
Noah Vogt
3 年 前
親
ab36b96341
コミット
5e9fc4228c
1 ファイル変更
、
6 行追加
、
0 行削除
一括表示
差分情報を表示
6
0
maturText/helloworld.c
+ 6
- 0
maturText/helloworld.c
ファイルの表示
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf("Hello World\n");
+ return 0;
+}