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?