Tagged Questions

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, ...