Why is 'volatile' parasitic in C++?
- by Steve
Consider the following code:
int main()
{
int i;
volatile int* p = &i; …