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.

For Visual Studio 2022, click here

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?