You said that passing through referance leaves the called function with only a copy of the value stored at the addressed referred.klatch said:
Is it not the same same as passing the value?
I mean:
void myfunc(int &I)
{
I = I +1;
}
void main(void)
{
int A=2;
myfunc(A);
printf("%d",A);
}
What'll happen? vbmenu_register("postmenu_836894", true);