摘要:
int rate = 60; int score = 80 TCHAR Temp[64] = TEXT(""); _stprintf_s(Temp, TEXT("pass_rate: %d%% score: %d"), rate, score); Temp就是转换后可以使用的字串。 阅读全文
摘要:
调用窗体的方法: // chart是一个MFC的窗体类 chart *chartdialog = new chart; //调用窗体,获取返回值 int ReturnValue = chartdialog->DoModal(); // Show the dialog printf("%d\n", R 阅读全文