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?