void GetCommandLine(addr CmdLine);
取得当前运行程序的命令行字符串
命令行最长 256 个字符,需要为 CmdLine 预留足够空间
#bigram void main() { char s[256]; GetCommandLine(s); printf(s); getchar(); }