To be more specific, the code is like this
main()
{
int a; int b;
func(&a,&b);
}
void func(int *x,int *y)
{
func1(...); // i need to pass x,y in func1
}
void func1(int ,int ) { ... }
The arguments x,y came from my main and i dont know how to pass them to func1, in order to modify them in the scope of this function