It has been said that there are only two difficult tasks in modern software development: distributed cache invalidation and how to name stuff. The following variable naming conventions won't assist ...
Does it ever make sense to declare a variable in C or C++ as both volatile (in other words, “ever-changing”) and const (“read-only”)? If so, why? And how should you combine volatile and const properly ...