When I compile this using MSVC++ 6 it prints "B" twice when it is expected to print "A" then "B". Is this the corrrect behavior? If so, what should I change to get the intended ...
I'm trying to templatize a class, based on a list of values. The list can't be another class - template parameters need to be compile-time constants. So that leaves arrays as the option.<P>My current ...