and thanks ahead of time for any help!
I have compiled a program (which I did not write) and it works just fine on Mac's but when I try to execute the program on Win
When you compile the program, try the option /heap-arrays to have the compiler place arrays on the heap instead of the stack. Otherwise try making the stack available to the executable larger.
Try adding the following flags during compilation to get more information printed out:
/traceback /check:all
check
will do runtime error checking, traceback
will tell the compiler to generate extra information when a severe error occurs at runtime.