-
Notifications
You must be signed in to change notification settings - Fork 3
Importance of Variable Scope
Tom Sherman edited this page Mar 6, 2017
·
8 revisions
char global_array[100];
static char global_array_static[100];
void foo()
{
char local_array[100];
}
Variable scope is especially important to understand when injecting code into SSBM. ref