为什么编译的C语言程序不是有效的win32应用程序?
#include <stdio.h>#include <stdlib.h>
#include <windows.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[])
{
printf("Hello,world!\n");
printf("请欣赏音乐--佛系人生(演唱者:雪峰)\n");
PlaySound("novie.wav",NULL,SND_FILENAME);
system("PAUSE\n");
return 0;
}
在gcc nocie.c -o -novie.exe -lwinmm后,输入novie回车后找不到指定程序!
哪位帮我解释一下呢,谢谢!