int add(int a,int b) { return a+b; } int ref(void) { int t1 = 12; int t2 = 34; return add(t1,t2); }