Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 C 语言为我的项目创建一个闹钟。我正在使用 mgp123 命令(在包 mpg321 中)运行闹钟声音。它只适用于 UBUNTU 用户。我需要该程序检查是否安装了 mpg321。如果软件包 mpg321 是使用 C 程序安装的,我如何使用 C 找到?
您可以使用system()
system()
system("mpg321 -h");
如果命令返回错误而mpg321不是未安装
mpg321