1 void foo (int k) 2 { 3 volatile int *b = & k; 4 *b = 5; 5 } 6 7 int main () 8 { 9 foo (5); 10 return 0; 11 } 12