#include<graphics.h>、initgraph(640, 500) 等~!@#$%我就不说了
wsprintf 这个MS的私有API是这么用的
程序代码:
#include <stdio.h>
#include <tchar.h>
#include <windows.h>
int main( void )
{
{
char str[10];
wsprintfA( str, "%s", "aa" ); // 这是MS的,不是C++的
puts( str );
}
{
wchar_t str[10];
wsprintfW( str, L"%s", L"aa" ); // 这是MS的,不是C++的
_putws( str ); // 这是MS的,不是C++的
}
{
TCHAR str[10]; // 这是MS的,不是C++的
wsprintf( str, TEXT("%s"), TEXT("aa") ); // 这是MS的,不是C++的
_putts( str ); // 这是MS的,不是C++的
}
}
假如没有特殊的爱好,可以用C语言的标准函数,如
程序代码:
#include <stdio.h>
int main( void )
{
{
char str[10];
sprintf( str, "%s", "aa" );
puts( str );
}
{
wchar_t str[10];
swprintf( str, sizeof(str)/sizeof(*str), L"%s", L"aa" );
fputws( str, stdout );
}
}