开发平台(Platform): (Ex: Win10, Linux, ...)
Win10
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
Dev-C++5.11
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
unistd.h
问题(Question):
chdir在unistd.h里面是 int chdir(const char *path)
所以我想说能不能在CMD上输入位址给chdir的引数读取
因为阵列本身就是指标函数,我想说那不是可以直接依址取值就好了
请教各位大神。
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
#include <stdio.h>
#include <unistd.h>
int main()
{
char buf[80];
printf("input folder address:");
scanf("%s",&buf);
chdir(*buf);
system("pause");
return 0;
}