wsprintf()的用法一例

TCHAR Tmp[50]; TCHAR *pSource=_T("this is a string"); wsprintf(Tmp,_T("%s and so it is"),pSource);

此时,Tmp显示为

this is a string and so it is.

你可能感兴趣的:(wsprintf()的用法一例)