From 75adb903a8ecdb75eda67a2d834860c27495d99e Mon Sep 17 00:00:00 2001
From: yun hwak byeon <byh7300@ajou.ac.kr>
Date: Sat, 27 Apr 2024 13:37:57 +0900
Subject: [PATCH] Upload New File

---
 P.c | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 P.c

diff --git a/P.c b/P.c
new file mode 100644
index 0000000..dd6c15f
--- /dev/null
+++ b/P.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+int main() {
+    int c;
+    // 표준 입력(stdin)에서 데이터를 읽어와서 표준 출력(stdout)으로 출력합니다.
+    while ((c = getchar()) != EOF) {
+        putchar(c);
+    }
+    return 0;
+}
+
-- 
GitLab