#include <stdio.h> void f(int *q) { *q=10; } int main(void) { int p; f(&p); printf("%d",p); return 0; }