Install Clang Windows Online

Download the installer from msys2.org . Follow the installation wizard.

#include <iostream> #include <vector> int main() std::vector<int> nums = 1, 2, 3; for (int n : nums) std::cout << n << "\n"; return 0; install clang windows

Now go compile something.