Installing Visual Studio Community
(updated 2024-08)
(Window)
We will use Visual Studio Community 2019 or higher in Numerical Programming.
NP tutorials are based on 2019 version.
Also, you can use online C Compiler for a quick programming and compilation
Click here for Online Compiler
(MAC/LINUX)
You can use VS Code for C/C++ programming
Read here for how to Install VS Code and C-make configuration
How to Install VS Community
You can download for free if you have a MSN account.
Download link: https://visualstudio.microsoft.com/ko/vs/community/
Click "Free Download" of Visual Studio Community 2019. After downloading, install the program.

Select "C++ programming Desktop" Option. Optionally, select others such as "Visual Studio Extension Pack". Then Select Install button.


Visual Studio 2019 ์คํ ํ: MSN ๋ก๊ทธ์ธ .
ํ๋๋ ์ด๋ฉ์ผ ID ๋ก ๊ฐ์ ํ ๋ก๊ทธ์ธ.
VS ํ๋ก์ ํธ ๊ฒฝ๋ก directory ํ์ธํ๊ธฐ
VS ์คํ ํ ๋ฉ๋ด>'๋๊ตฌ > ์ต์ ์ ํ

ํ๋ก์ ํธ ๋ฐ ์๋ฃจ์ > ์์น > ํ๋ก์ ํธ ์์น: ์์ ๋กญ๊ฒ ์ค์ (๋ณ๊ฒฝํ์ง ์์๋ ๋ฌด๊ดํจ)
ํ๋ก์ ํธ ์์น: ํ๋ก์ ํธ ์์ฑ์ ์์ค์ฝ๋๋ฅผ ํฌํจํ ํ๋ก์ ํธ์ ์ ์ฅ ๊ฒฝ๋ก๋ฅผ ์๋ฏธ
Default๋ก VS ํ๋ก์ ํธ๊ฐ ์ฌ๊ธฐ ๊ฒฝ๋ก์ ์์ฑ์ด ๋จ.

VS ํ๋ก์ ํธ ๋ง๋ค๊ธฐ
"Hello Handong" ํ ์คํธ์ฝ๋ ์์ฑํ๊ธฐ
Visual Studio 2019 ์คํ ํ ์ ํ๋ก์ ํธ ๋ง๋ค๊ธฐ > ๋น ํ๋ก์ ํธ

ํ๋ก์ ํธ ์ด๋ฆ์ HelloHandong ์ผ๋ก ์ค์ ํ ๋ง๋ค๊ธฐ

๋ณด๊ธฐ โ ์๋ฃจ์ ํ์๊ธฐ > [ํ๋ก์ ํธ๋ช ] > ์์ค ํ์ผ > ์ถ๊ฐ > ์ํญ๋ชฉ click
C++ ํ์ผ(cpp) ์ ํ ํ helloHandong.cpp ํ์ผ ์์ฑ


์๋ ์์ค์ฝ๋ ์ ๋ ฅ ํ ์คํ (CTRL+F5)
#include <stdio.h>
int main()
{
printf("Hello, Handong!\n");
return 0;
}
Expected Output

Last updated
Was this helpful?