mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-03 10:33:25 +08:00
update
This commit is contained in:
16
basic_content/volatile/volatile.cpp
Normal file
16
basic_content/volatile/volatile.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
/* Compile code with optimization option */
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
const volatile int local = 10;
|
||||
int *ptr = (int*) &local;
|
||||
|
||||
printf("Initial value of local : %d \n", local);
|
||||
|
||||
*ptr = 100;
|
||||
|
||||
printf("Modified value of local: %d \n", local);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user