#include #include int f1(int *i) { *i = (*i) + 1; printf("%d\n", i); } main () { int i; i=7; f1(&i); printf("%d\n", i); }