#include void main(){ int a = 5; int b = 10; int c = 15; *(&b + 1) = 47; printf("a = %d, b = %d, c = %d\n", a, b, c); }