I am studying the memset function now, but all the examples are regarding to char array as following:
char a[100];
memset(a, 0, 100);
it will set every element in this char array to 0.
I wondered if memset can apply to int array or float array?
|
show 2 more comments
feedback
|
|
Yes, it can apply to any memory buffer, but you must input the correct memory buffer size ...
will not set each member of | ||||
|
feedback
|
|
For static-sized and variable-length arrays, you can just
(This does not work if you pass arrays as function arguments: Behaviour of Sizeof in C ) | |||
|
feedback
|
|
It can be applied to any array. The 100 at the end is the size in bytes, so a integer would be 4 bytes each, so it would be -
Get it? :) | |||||||||||
feedback
|
memsetcan be applied to astruct. Any memory is OK, if you have right to write it. – Stan Jul 25 '11 at 13:01char a[100] = {};? – Muggen Jul 25 '11 at 13:01