I need to know if this can be done, I think with pointers it could be but I do not know what form. On the one hand we have a function cambiarValor
void cambiarValor (int a){
a=a*4;
}
and on the other hand the main from where we invoke it
int main(){
a=4;
cambiarValor(a);
}
What I want to know is so that at the end of main the value of a has changed which pointers I have to use