TinyCC-Win(HelloWorld)
TinyCC编译MessageBox版HelloWorld
操作方法
- 01
源码: #include <windows.h>void main (void){ MessageBox (0, "text", "cap", MB_ICONINFORMATION);} 保存到喜欢的位置,这里放桌面了"E:\Desktop"
- 02
编译GUI版: tcc msg.c -luser32 -Wl,-subsystem=gui
- 03
编译控制台版: tcc msg.c -luser32或者 tcc msg.c -luser32 -Wl,-subsystem=console
赞 (0)