wsprintf

  int wsprintf( LPTSTR lpOut, // 输出缓冲区,最大为1024字节   LPCTSTR lpFmt, // 格式字符串   ... // 需输出的参数);   The wsprintf function formats and stores a series of characters and values in a buffer.   使用此函数可将数字转为字符串;而且可以用它来连接多个字符串和数字。   例:   int x=6;   LPTSTR szBuffer=new TCHAR[1024];   wsprintf(szBuffe...
默认分类 | 2008-12-19 17:59 | 阅读 5072 次 | 评论 1 条
浏览25596次