如果我编写以下程序,则运行代码时不会发出蜂鸣声.
#include <stdio.h> int main() { printf("\a"); return 0; }
你能告诉我如何\a使用C程序产生哔声吗?
\a
c
c ×1