I want to run my console app C++ project on system that hasn't got any c++ related compilers or libraries.
Whenever I run it I got an error.
"The program can't start because MSVCP110D.dll is missing from your computer. Try reinstalling the problem to fix this problem."
I believe it is because I have used library in my program. to utilize stoi function.
If that's the case, how can I add & use this library within my project. if not what are the alternatives ?
It a simple program that uses following libraries to read & write files.
#include <iostream>
#include <fstream>
#include <string>
I built this project using Visual Studio 2012.
The system that am gonna be running this project on uses win7.