memset function
|
Ambitious contributor
|
|
| 18Dec2007,12:35 | #1 |
|
hye can anyone give me the example of memset function
|
|
Go4Expert Founder
|
![]() |
| 18Dec2007,18:10 | #2 |
|
Code:
TCHAR szPath[MAX_PATH]; memset(szPath,'\0',MAX_PATH); |
|
Ambitious contributor
|
|
| 18Dec2007,19:45 | #3 |
|
> memset(szPath,'\0',MAX_PATH);
And if TCHAR isn't a char, then you'll need one of Code:
memset(szPath,'\0',MAX_PATH * sizeof TCHAR ); memset(szPath,'\0',MAX_PATH * sizeof szPath[0] ); memset(szPath,'\0',sizeof szPath ); Focus on the bit about "all-bits-zero". In other words, don't rely on memset giving you valid floats or pointers, if you try the same approach on attempting to clear more complex data types. |

