我无法double使用打印值wsprintf().我试过sprintf(),它工作得很好.
用于wsprintf()和的语法sprintf()如下:
wsprintf(str,TEXT("Square is %lf "),iSquare); // Does not show value
sprintf(str," square is %lf",iSquare); // works okay
Run Code Online (Sandbox Code Playgroud)
我在使用时犯了什么错误wsprintf()吗?