so my code is very simple:
#include "stdafx.h"
#include <iostream>
int main()
{
std::cout << "Hello World!";
std::cout << std::endl;
return 0;
}
thats it. i'm using visual studio 2015. when i'm building the code no errors but when i copy the exe to my win7 vm (no visual studio installed) i'm getting: the program cant start beacuse MSVCP140.dll is missing.... why? i tried to change from debug to release but same error.... why i cant execute this simple code on a win7 without visual studio installed?