我在调用函数 '. 我花了很多时间来理解为什么编译器会忽略我的函数。为什么在编译时没有报告?编译器构建所有内容都没有错误,但没有带有“2”的消息框。
#include "stdafx.h"
#include <windows.h>
void tstB()
{
MessageBox(NULL, "2", NULL, NULL);
}
int _tmain(int argc, _TCHAR* argv[])
{
MessageBox(NULL, "1", NULL, NULL);
tstB;
return 0;
}