#include<stdio.h> int a, b; void fun(int *a,int *b) { *a=10; *b=20; } main() { int a=5, b=7; fun(&a,&b); printf("%d,%d \n", a,b); }