PrevUpHomeNext

windows install cpp compiler


windows install cpp compiler - Posted on Jun 12, 2024 - See https://learn.microsoft.com/en-us/cpp - Logs Home - d0023

Install Visual Studio cpp compiler

Install visual studio c++ compiler

Visual Studio Home:

https://visualstudio.com

Download => Click => Install => Use

Install msys2 cpp compiler

Install msys2 c++ compiler

MSYS2 Home:

https://www.msys2.org

Download => Click => Install => Use

Then open msys2 terminal mingw64 :

pacman -Ss gcc		# search mingw64 gcc c++ compiler name
pacman -Si <gcc-pack-name-here>		# Select the correct name

cpp example

#include <iostream>

int main()
{
	std::cout << "Hello c++!" << std::endl;
}

See Also

cppfx home


PrevUpHomeNext

utx::print

esv::print