Hi
Why isn't assignment to global variables allowed?
Code:
int t;
t = 9;  // error C2086: 'int t' : redefinition

int main()
{
	
	return 0;
}
Thanks