Hi Everyone, As an example: int a[10]; volatile int* b = a; for(unsigned i=0; i<10; i++) *b++ = 0; When the dereference occurs through b, does it produce a volatile element? Thanks in advance.
Hi Everyone, As an example: int a[10]; volatile int* b = a; for(unsigned i=0; i<10; i++) *b++ = 0; When the dereference occurs through b, does it produce a volatile element? Thanks in advance.