Compile and run C code using Notepad++ (2021)

Опубликовано: 25 Октябрь 2019
на канале: CodeVault
76,148
815

For compiling and running using MinGW:
-- UPDATE -- :
The following script will also prevent running the program if compilation is not successful.

npp_save
cd "$(CURRENT_DIRECTORY)"
cmd /c gcc -o "$(NAME_PART).exe" "$(FULL_CURRENT_PATH)" && "$(NAME_PART).exe"

-- THE SCRIPT SHOWN IN THE VIDEO --
npp_save
cd "$(CURRENT_DIRECTORY)"
gcc -o "$(NAME_PART).exe" "$(FULL_CURRENT_PATH)"
"$(NAME_PART).exe"

For compiling and running using Visual C:
-- UPDATE -- :
The following script will also prevent running the program if compilation is not successful.

npp_save
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build"
vcvarsall.bat x64 && cl "$(FULL_CURRENT_PATH)" /Fo$(CURRENT_DIRECTORY)\ /link /out:"$(CURRENT_DIRECTORY)\$(NAME_PART).exe" && "$(CURRENT_DIRECTORY)\$(NAME_PART).exe"

-- THE SCRIPT SHOWN IN THE VIDEO --
npp_save
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build"
vcvarsall.bat x64 && cl "$(FULL_CURRENT_PATH)" /Fo$(CURRENT_DIRECTORY)\ /link /out:"$(CURRENT_DIRECTORY)\$(NAME_PART).exe"
cd $(CURRENT_DIRECTORY)
"$(NAME_PART).exe"

More info on Visual C scripts:
https://docs.microsoft.com/en-us/cpp/...

Check out our Discord server:   / discord  


Смотрите видео Compile and run C code using Notepad++ (2021) онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь CodeVault 25 Октябрь 2019, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 76,148 раз и оно понравилось 815 людям.