c语言实现无限弹窗

#include <windows.h>
#pragma comment (lib, "User32.lib")
int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){
    while(1){
	    MessageBox(NULL, TEXT("Fuck !!"), TEXT("消息对话框"), MB_OK);
	}
    return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_43568078/article/details/85010577