Name: Anonymous 2009-05-14 5:52
How would I access the global variable tim from procedure()?
int tim = 0;
void procedure(int tim)
{
global tim = local tim;
}
int tim = 0;
void procedure(int tim)
{
global tim = local tim;
}