我目前正在研究C,并且想知道当用户制作的头文件位于闪存驱动器中时是否可以运行程序。如果文件在PC上,它可以工作,但不确定它是否在其外部
。代码如下所示:
#include <stdio.h>
#include<Conio.h>
#include"headerfilewhichcontainsintcheck.h"
void main(){
int a,g,c;
printf("Input age: ");
scanf("%d", &a);
printf("Input gender: ");
scanf("%d", &g);
c=check(a,g)//the function which will process the variables below, which is, contained in the header file//
getch();
}
同样,当头文件在PC中时,它会运行,但在闪存驱动器上时停止运行。我这里缺少什么吗?非常感谢!
事实证明,我所要做的就是打开DOSBOX并挂载目录,或设置路径。
支架 B:E:\
无论如何,感谢您的帮助,我感谢您的所有帮助...!