mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-03 10:33:25 +08:00
17 lines
298 B
C++
17 lines
298 B
C++
/* 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;
|
|
}
|