From ca8d7997e3eb4e115679047bc2525387be75f0bf Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Sat, 22 Feb 2025 23:34:15 +0900 Subject: [PATCH 01/18] =?UTF-8?q?=EC=A3=BC=EC=84=9D=20=EC=8B=A4=EC=8A=B5?= =?UTF-8?q?=20=EC=86=94=EB=A3=A8=EC=85=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 + Computer-Programming-and-Practice-2025-1.sln | 31 ++++ ...er-Programming-and-Practice-2025-1.vcxproj | 135 ++++++++++++++++++ ...amming-and-Practice-2025-1.vcxproj.filters | 14 ++ main.c | 8 ++ 5 files changed, 190 insertions(+) create mode 100644 .gitignore create mode 100644 Computer-Programming-and-Practice-2025-1.sln create mode 100644 Computer-Programming-and-Practice-2025-1.vcxproj create mode 100644 Computer-Programming-and-Practice-2025-1.vcxproj.filters create mode 100644 main.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2cf5bc1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.vs +Computer-Programming-and-Practice-2025-1.vcxproj.user diff --git a/Computer-Programming-and-Practice-2025-1.sln b/Computer-Programming-and-Practice-2025-1.sln new file mode 100644 index 0000000..cfa80bc --- /dev/null +++ b/Computer-Programming-and-Practice-2025-1.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.13.35818.85 d17.13 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Computer-Programming-and-Practice-2025-1", "Computer-Programming-and-Practice-2025-1.vcxproj", "{56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Debug|x64.ActiveCfg = Debug|x64 + {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Debug|x64.Build.0 = Debug|x64 + {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Debug|x86.ActiveCfg = Debug|Win32 + {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Debug|x86.Build.0 = Debug|Win32 + {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Release|x64.ActiveCfg = Release|x64 + {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Release|x64.Build.0 = Release|x64 + {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Release|x86.ActiveCfg = Release|Win32 + {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7548D284-3031-4A53-8359-876BE48586E0} + EndGlobalSection +EndGlobal diff --git a/Computer-Programming-and-Practice-2025-1.vcxproj b/Computer-Programming-and-Practice-2025-1.vcxproj new file mode 100644 index 0000000..e1d6efa --- /dev/null +++ b/Computer-Programming-and-Practice-2025-1.vcxproj @@ -0,0 +1,135 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {56298b6a-7bcc-4ad5-857c-3ae51b8ca9fa} + ComputerProgrammingandPractice20251 + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/Computer-Programming-and-Practice-2025-1.vcxproj.filters b/Computer-Programming-and-Practice-2025-1.vcxproj.filters new file mode 100644 index 0000000..3366b87 --- /dev/null +++ b/Computer-Programming-and-Practice-2025-1.vcxproj.filters @@ -0,0 +1,14 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + c + + + + + 소스 파일 + + + \ No newline at end of file diff --git a/main.c b/main.c new file mode 100644 index 0000000..8ab6291 --- /dev/null +++ b/main.c @@ -0,0 +1,8 @@ +/* �ּ� */ +// �ּ��� /*�� �����ؼ� */�� �����ϴ�. +// C99���ʹ� //�ε� �ּ��� �� �� �ֽ��ϴ�. +// //�� ���� �ּ��� ���� �������Դϴ�. + +int main() { + return 0; +} From 161bb958ec755565290ff3af25e305ebd6273626 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Sun, 23 Feb 2025 23:16:48 +0900 Subject: [PATCH 02/18] Update main.c --- main.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/main.c b/main.c index 8ab6291..6c79fa7 100644 --- a/main.c +++ b/main.c @@ -1,8 +1,14 @@ -/* �ּ� */ -// �ּ��� /*�� �����ؼ� */�� �����ϴ�. -// C99���ʹ� //�ε� �ּ��� �� �� �ֽ��ϴ�. -// //�� ���� �ּ��� ���� �������Դϴ�. +/* 함수 실행 */ +/* + 이름이 five고, 입력값이 없는 함수를 실행하는 문법은 + five() 입니다. + 함수를 실행하고나면 결과값을 얻습니다. + 결과값을 값 대신에 쓸 수 있습니다. +*/ + +/* To Do: 5를 결과값으로 반환하는 five 함수를 정의하기 */ int main() { + /* To Do: 결과값을 five 함수의 실행 결과로 바꾸기 */ return 0; } From 2926d041cc9ebb236f005c7eaa688488b2ac3c8d Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Sun, 23 Feb 2025 23:33:54 +0900 Subject: [PATCH 03/18] Update .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2cf5bc1..bc46f2c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/.vs +*/* Computer-Programming-and-Practice-2025-1.vcxproj.user From 95c4f5f15edd92bf2dacbd93cc16f49fe97a8f59 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Mon, 24 Feb 2025 17:21:25 +0900 Subject: [PATCH 04/18] Update main.c --- main.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 6c79fa7..e865e41 100644 --- a/main.c +++ b/main.c @@ -1,7 +1,8 @@ -/* 함수 실행 */ +/* 함수 선언 */ /* - 이름이 five고, 입력값이 없는 함수를 실행하는 문법은 - five() 입니다. + 소스 파일에 함수에 대한 정의가 있더라도, + 함수를 실행하는 문장 뒤에 있는 경우 + C 함수를 실행하고나면 결과값을 얻습니다. 결과값을 값 대신에 쓸 수 있습니다. */ From 9a2d2d0c9927d4335d601b0499f9d76a548ec967 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Mon, 24 Feb 2025 17:31:38 +0900 Subject: [PATCH 05/18] Update main.c --- main.c | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/main.c b/main.c index e865e41..804153f 100644 --- a/main.c +++ b/main.c @@ -1,15 +1,25 @@ /* 함수 선언 */ /* - 소스 파일에 함수에 대한 정의가 있더라도, - 함수를 실행하는 문장 뒤에 있는 경우 - C - 함수를 실행하고나면 결과값을 얻습니다. - 결과값을 값 대신에 쓸 수 있습니다. + 함수 정의가 함수 실행 문장 뒤에 있는 경우, + 함수 실행 문장에서 함수를 확인할 수 없습니다. + 이런 경우에 함수 선언을 통해 함수의 + 이름, 입력값 종류, 출력값 종류를 정해놓습니다. + 함수 정의는 보통 소스 파일의 가장 앞에서 합니다. */ -/* To Do: 5를 결과값으로 반환하는 five 함수를 정의하기 */ +/* To Do: 5를 결과값으로 반환하고, 입력값이 없는 five 함수를 선언하기 */ int main() { - /* To Do: 결과값을 five 함수의 실행 결과로 바꾸기 */ - return 0; + return five(); +} + +/* + 함수 이름: five + 입력값: 없음 + 출력값: int + + five()는 5를 결과값으로 반환한다. +*/ +int five() { + return 5; } From b19bbbe10c633ff007591181c0efa76620ff844f Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Mon, 24 Feb 2025 17:46:04 +0900 Subject: [PATCH 06/18] Update main.c --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 804153f..e7c3387 100644 --- a/main.c +++ b/main.c @@ -4,7 +4,7 @@ 함수 실행 문장에서 함수를 확인할 수 없습니다. 이런 경우에 함수 선언을 통해 함수의 이름, 입력값 종류, 출력값 종류를 정해놓습니다. - 함수 정의는 보통 소스 파일의 가장 앞에서 합니다. + 함수 선언은 보통 소스 파일의 가장 앞에서 합니다. */ /* To Do: 5를 결과값으로 반환하고, 입력값이 없는 five 함수를 선언하기 */ From 06508cedf7523e2c687edb40d964ede44493d6a7 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Tue, 11 Mar 2025 20:34:38 +0900 Subject: [PATCH 07/18] Update README.md --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb3e4ff..eaeac28 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ -# Computer Programming and Practice 2025-1 - 컴퓨터 프로그래밍 및 실습 과목의 수업 홈페이지 +# 함수선언 (매개변수가 없을 때) + +함수 선언은 함수 정의, 전역변수 선언과 더불어 전처리 후의 C 프로그램을 구성합니다. +함수 선언은 이름이 특정 반환타입의 함수를 가리킨다고 정합니다. + +`타입` `이름` `(` `)` `;` 형태로 씁니다. + +#### 코드 예시: +```c +/* 반환 타입이 void고, 이름이 x인 함수의 선언 */ +void x(); +``` From ba9f94a40d560b0675ffa914c81e8c482efb069d Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Tue, 11 Mar 2025 20:35:53 +0900 Subject: [PATCH 08/18] Create .editorconfig --- .editorconfig | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8d3a3fd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,2 @@ +[*.c] +charset = utf-8 From aa45b80d4bd79847cb425ee67569e3b282313425 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Tue, 11 Mar 2025 20:37:42 +0900 Subject: [PATCH 09/18] Update and rename Computer-Programming-and-Practice-2025-1.sln to Solution-Week1.sln --- ...ming-and-Practice-2025-1.sln => Solution-Week1.sln | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) rename Computer-Programming-and-Practice-2025-1.sln => Solution-Week1.sln (50%) diff --git a/Computer-Programming-and-Practice-2025-1.sln b/Solution-Week1.sln similarity index 50% rename from Computer-Programming-and-Practice-2025-1.sln rename to Solution-Week1.sln index cfa80bc..e46df0c 100644 --- a/Computer-Programming-and-Practice-2025-1.sln +++ b/Solution-Week1.sln @@ -3,24 +3,15 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.13.35818.85 d17.13 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Computer-Programming-and-Practice-2025-1", "Computer-Programming-and-Practice-2025-1.vcxproj", "{56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Project-Function-Declarations-No-Parameter", "Project-Function-Declarations-No-Parameter.vcxproj", "{56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Debug|x64.ActiveCfg = Debug|x64 {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Debug|x64.Build.0 = Debug|x64 - {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Debug|x86.ActiveCfg = Debug|Win32 - {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Debug|x86.Build.0 = Debug|Win32 - {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Release|x64.ActiveCfg = Release|x64 - {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Release|x64.Build.0 = Release|x64 - {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Release|x86.ActiveCfg = Release|Win32 - {56298B6A-7BCC-4AD5-857C-3AE51B8CA9FA}.Release|x86.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From d17f0d56dfed39ac4e00636aab1b681edf3f89da Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Tue, 11 Mar 2025 20:39:14 +0900 Subject: [PATCH 10/18] Update and rename Computer-Programming-and-Practice-2025-1.vcxproj to Project-Function-Definitions-No-Parameter.vcxproj --- ...er-Programming-and-Practice-2025-1.vcxproj | 135 ------------------ ...-Function-Definitions-No-Parameter.vcxproj | 50 +++++++ 2 files changed, 50 insertions(+), 135 deletions(-) delete mode 100644 Computer-Programming-and-Practice-2025-1.vcxproj create mode 100644 Project-Function-Definitions-No-Parameter.vcxproj diff --git a/Computer-Programming-and-Practice-2025-1.vcxproj b/Computer-Programming-and-Practice-2025-1.vcxproj deleted file mode 100644 index e1d6efa..0000000 --- a/Computer-Programming-and-Practice-2025-1.vcxproj +++ /dev/null @@ -1,135 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - 17.0 - Win32Proj - {56298b6a-7bcc-4ad5-857c-3ae51b8ca9fa} - ComputerProgrammingandPractice20251 - 10.0 - - - - Application - true - v143 - Unicode - - - Application - false - v143 - true - Unicode - - - Application - true - v143 - Unicode - - - Application - false - v143 - true - Unicode - - - - - - - - - - - - - - - - - - - - - - Level3 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - - - - - Level3 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - true - true - - - - - Level3 - true - _DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - - - - - Level3 - true - true - true - NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - true - true - - - - - - - - - \ No newline at end of file diff --git a/Project-Function-Definitions-No-Parameter.vcxproj b/Project-Function-Definitions-No-Parameter.vcxproj new file mode 100644 index 0000000..8ab5aab --- /dev/null +++ b/Project-Function-Definitions-No-Parameter.vcxproj @@ -0,0 +1,50 @@ + + + + + Debug + x64 + + + + 17.0 + Win32Proj + {56298b6a-7bcc-4ad5-857c-3ae51b8ca9fa} + ComputerProgrammingandPractice20251 + 10.0 + + + + Application + true + v143 + Unicode + + + + + + + + + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + + + + + From 753bd8a0a3c66c1c0c39975140c9cff84c1f6fb3 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Tue, 11 Mar 2025 20:40:14 +0900 Subject: [PATCH 11/18] Update and rename Project-Function-Definitions-No-Parameter.vcxproj to Project-Function-Declarations-No-Parameter.vcxproj --- ...cxproj => Project-Function-Declarations-No-Parameter.vcxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Project-Function-Definitions-No-Parameter.vcxproj => Project-Function-Declarations-No-Parameter.vcxproj (96%) diff --git a/Project-Function-Definitions-No-Parameter.vcxproj b/Project-Function-Declarations-No-Parameter.vcxproj similarity index 96% rename from Project-Function-Definitions-No-Parameter.vcxproj rename to Project-Function-Declarations-No-Parameter.vcxproj index 8ab5aab..7d1d63f 100644 --- a/Project-Function-Definitions-No-Parameter.vcxproj +++ b/Project-Function-Declarations-No-Parameter.vcxproj @@ -10,7 +10,7 @@ 17.0 Win32Proj {56298b6a-7bcc-4ad5-857c-3ae51b8ca9fa} - ComputerProgrammingandPractice20251 + ProjectFunctionDeclarationsNoParameter 10.0 From 5322be85734096c26b65ce310043dca279459a84 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Tue, 11 Mar 2025 20:42:23 +0900 Subject: [PATCH 12/18] Update and rename Computer-Programming-and-Practice-2025-1.vcxproj.filters to Project-Function-Declarations-No-Parameter.vcxproj.filters --- ...oject-Function-Declarations-No-Parameter.vcxproj.filters | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename Computer-Programming-and-Practice-2025-1.vcxproj.filters => Project-Function-Declarations-No-Parameter.vcxproj.filters (80%) diff --git a/Computer-Programming-and-Practice-2025-1.vcxproj.filters b/Project-Function-Declarations-No-Parameter.vcxproj.filters similarity index 80% rename from Computer-Programming-and-Practice-2025-1.vcxproj.filters rename to Project-Function-Declarations-No-Parameter.vcxproj.filters index 3366b87..15aa408 100644 --- a/Computer-Programming-and-Practice-2025-1.vcxproj.filters +++ b/Project-Function-Declarations-No-Parameter.vcxproj.filters @@ -1,14 +1,14 @@  - + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} c - 소스 파일 + c 소스 파일 - \ No newline at end of file + From 46eb4fcf7fa76f822489520e0ac8405456262b5c Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Tue, 11 Mar 2025 20:52:50 +0900 Subject: [PATCH 13/18] Update main.c --- main.c | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/main.c b/main.c index e7c3387..dffe2a1 100644 --- a/main.c +++ b/main.c @@ -1,25 +1,23 @@ -/* 함수 선언 */ -/* - 함수 정의가 함수 실행 문장 뒤에 있는 경우, - 함수 실행 문장에서 함수를 확인할 수 없습니다. - 이런 경우에 함수 선언을 통해 함수의 - 이름, 입력값 종류, 출력값 종류를 정해놓습니다. - 함수 선언은 보통 소스 파일의 가장 앞에서 합니다. -*/ +/* 매개변수가 없는 함수의 선언 */ + +/* 문법 + * 매개변수가 없는 함수는 타입 이름 ( ) ; 형식으로 선언합니다. + * + * 의미 + * 해당 이름이 특정 반환타입의 함수를 뜻한다고 정합니다. + */ -/* To Do: 5를 결과값으로 반환하고, 입력값이 없는 five 함수를 선언하기 */ +/* To Do: 반환 타입이 int이고 이름이 five인 함수를 선언해보세요 */ int main() { return five(); } /* - 함수 이름: five - 입력값: 없음 - 출력값: int - - five()는 5를 결과값으로 반환한다. -*/ + * 함수 이름: five + * 반환 타입: int + * five()는 5를 결과값으로 반환한다. + */ int five() { return 5; } From cd16bd760d14bee3d6745437e8afde17e979cfab Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Tue, 11 Mar 2025 23:48:13 +0900 Subject: [PATCH 14/18] Rename Solution-Week1.sln to Solution-Week2.sln --- Solution-Week1.sln => Solution-Week2.sln | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Solution-Week1.sln => Solution-Week2.sln (100%) diff --git a/Solution-Week1.sln b/Solution-Week2.sln similarity index 100% rename from Solution-Week1.sln rename to Solution-Week2.sln From 9443b503d97b0c255f4783b02e38d5ab45950907 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Thu, 13 Mar 2025 01:11:39 +0900 Subject: [PATCH 15/18] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index eaeac28..fa9df0b 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,13 @@ /* 반환 타입이 void고, 이름이 x인 함수의 선언 */ void x(); ``` + +#### 관련 C89 표준 +3.5.4.3 Function declarators (including prototypes) +> Semantics +> +> If, in the declaration "T D1", D1 has the form +> +> D( ... ) +> +> ... then the type specified for ident is " ... function returning T." From 4efe7a96e9b8cfdbabe81514ffd8c32de9586f47 Mon Sep 17 00:00:00 2001 From: chaebkimm Date: Fri, 14 Mar 2025 01:21:17 +0900 Subject: [PATCH 16/18] Update Project-Function-Declarations-No-Parameter.vcxproj --- Project-Function-Declarations-No-Parameter.vcxproj | 1 + 1 file changed, 1 insertion(+) diff --git a/Project-Function-Declarations-No-Parameter.vcxproj b/Project-Function-Declarations-No-Parameter.vcxproj index 7d1d63f..f0845b9 100644 --- a/Project-Function-Declarations-No-Parameter.vcxproj +++ b/Project-Function-Declarations-No-Parameter.vcxproj @@ -35,6 +35,7 @@ true _DEBUG;_CONSOLE;%(PreprocessorDefinitions) true + /utf-8 %(AdditionalOptions) Console From 1cc58e7459c4a08d2e40333cd0e9f7c575a54585 Mon Sep 17 00:00:00 2001 From: dlwjdcjf0 Date: Fri, 14 Mar 2025 15:05:34 +0900 Subject: [PATCH 17/18] Create Project-Function-Calls-No-Parameter.vcxproj.user --- Project-Function-Calls-No-Parameter.vcxproj.user | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Project-Function-Calls-No-Parameter.vcxproj.user diff --git a/Project-Function-Calls-No-Parameter.vcxproj.user b/Project-Function-Calls-No-Parameter.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/Project-Function-Calls-No-Parameter.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file From 471ab6ba4edcfbba4f237a75aa134a340d013e98 Mon Sep 17 00:00:00 2001 From: dlwjdcjf0 Date: Fri, 14 Mar 2025 15:17:13 +0900 Subject: [PATCH 18/18] Create Project-Function-Declarations-No-Parameter.vcxproj.user --- Project-Function-Declarations-No-Parameter.vcxproj.user | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Project-Function-Declarations-No-Parameter.vcxproj.user diff --git a/Project-Function-Declarations-No-Parameter.vcxproj.user b/Project-Function-Declarations-No-Parameter.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/Project-Function-Declarations-No-Parameter.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file