Hello everyone,
i have the following code
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
cout<<"\nPress Any Key To Continue ";
getch();
return 0;
}
it compiles fine on my windows xp using microsoft visual c++ , and i can run the resultant executable file with no problems at all , but when i copy that executable file to another computer and try to run it i get an error that says "application failed to start because application configuration is incorrect".
help please.