0

これに出会い、それが何をするのか疑問に思っていました

LPCTSTR szmyLPCTSTR; 

// doing _tcsncpy things with that string

//at the end then there is this line which i am not sure what it does
szmyLPCTSTR[122] = 0;

ありがとう !!

4

1 に答える 1

2

LPCTSTR は単なる文字へのポインタです。文字列に null ターミネータを追加しています。

于 2013-06-14T15:31:24.223 に答える