Why is the output of the following program 84215045?
int grid[110];
int main()
{
memset(grid, 5, 100 * sizeof(int));
printf("%d", grid[0]);
return 0;
}
feedback
|
|
Some platforms provide alternative APIs to
to get the behavior that you seem to expect. What platform are you targeting? In C++, you should just use
| |||||||||
feedback
|
You are setting 400 bytes, starting at
| |||||||||||||||
feedback
|
|
| |||||||||
feedback
|
|
Don't use memset. You set each byte
| |||||||||||||||||
feedback
|
|
Well, the
Which is then interpreted as 84215045. | |||
|
feedback
|
|
You haven't actually said what you want your program to do. Assuming that you want to set each of the first 100 elements of
I understand that you're concerned about speed, but your concern is probably misplaced. On the one hand, You've spent many orders of magnitude more time writing the question than your computer will spend setting Finally, before I run out of hands (too late!), it doesn't matter how fast | |||
|
feedback
|
|
Since the memset writes bytes,I usually use it to set an int array to zero like:
or you can use it to set a char array,since a char is exactly a byte:
what's more,an int array can also be set to -1 by memset:
This is because -1 is 0xffffffff in int,and is 0xff in char(a byte). | |||
|
feedback
|