Comment on "
Intro to Memory and Arrays in C
"
by ut — Apr 23
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
"
Copyright © Scott Stevenson 2004-2015
by ut — Apr 23
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?