剛開始學不久C, 是用VS 2017 學的,軟件本身比C 更難覺得.
練習打完了 Ctrl + F5 有時候運行成功,
有時候卻彈出窗口說"The system cannot find the file specified"
請問是為什麼?
是保存路徑出了錯嗎
#include<stdio.h>
void butler(void);
int main(void)
{
printf("Hel.\n");
butler();
prinf("nice to meet you");
return 0;
}
void butler(void)
{
printf("my name is Hou\n");
}
可能是你的杀毒软件误报病毒,把编译好的exe文件删除了,导致没法运行。或者有编译错误,没有生成exe也会出现The system cannot find the file specified