Tagged Questions
8
votes
3answers
5k views
Set local environment variables in C++
How do I set an environment variable in C++?
They do not need to persist past program execution
They only need to be visible in the current process
Preference for platform independent but for my ...
2
votes
2answers
308 views
Catching wrong array reference in C++
How do I catch wrong array reference in C++? Why doesn't the following code work:
#include <exception>
int * problemNum = new int;
int (* p [100])() = {problem1, problem2, ...