#include <stdio.h> void main() { int x = 1, y = 2, *ip; ip = &x; y = *ip; *ip = 3; printf("x = %d, y = %d", x, y); }
To embed this project on your website, copy the following code and paste it into your website's HTML: