Comment on "
Intro to Memory and Arrays in C
"
by ut — Apr 23, 09
int array[500] = {1,2,3,4};
void main()
{
array[0] = 3;
}
int array[500];
void main()
{
array[0] = 3;
}
whats the difference of both arrays from memory allocation point of view?
Back to "
Intro to Memory and Arrays in C
"
Technorati Profile
Copyright © Scott Stevenson 2004-2006
by ut — Apr 23, 09
void main()
{
array[0] = 3;
}
int array[500];
void main()
{
array[0] = 3;
}
whats the difference of both arrays from memory allocation point of view?