| 0 | 18 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,19 @@ |
| 1 |
+/*! |
|
| 2 |
+ * Copyright: Copyright (c) 2019, HiSEON.me |
|
| 3 |
+ */ |
|
| 4 |
+ |
|
| 5 |
+#include <stdio.h> |
|
| 6 |
+ |
|
| 7 |
+int sum(int a, int b); |
|
| 8 |
+ |
|
| 9 |
+int main() {
|
|
| 10 |
+ for (int i=0; i < 10; i++) {
|
|
| 11 |
+ printf("hello, world\n");
|
|
| 12 |
+ } |
|
| 13 |
+ |
|
| 14 |
+ return 0; |
|
| 15 |
+} |
|
| 16 |
+ |
|
| 17 |
+int sum(int a, int b) {
|
|
| 18 |
+ return a+b; // 덧셈을 계산 |
|
| 19 |
+} |