View Single Post
Newbie Member
30Mar2009,12:33  
abhushan_s's Avatar
Hi all,

I have a simple question, which iam probably not able to figure out conceptionally.

It goes like this

void test( int * variable)
{
#define one variable [0]
#define two variable [1]
}

Here the variable is the pointer to the first address of the passed value from some other function or main.
Now the question is that "will the scope of the two variables" be only inside the function "Test()" or will it be outside the function also?