gpt4 book ai didi

c - Scanf for char *路径

转载 作者:太空宇宙 更新时间:2023-11-04 06:01:58 24 4
gpt4 key购买 nike

我正在尝试从键盘读取(使用scanf)变量char *path我不知道如何将 path 作为 scanf 的参数传递以从键盘获取输入。我该怎么做?

附言这是我尝试过的:

char *filePath = "";
printf("Path: "); scanf("%s", &filePath);

但我的应用程序总是停止。

最佳答案

char *filePath = "";

编译器应该针对上述语句警告您。 filePath 类型是 const char* 而不是 char*

filePath 指向空字符串文字。字符串文字位于只读位置,您无法编辑它们。

您必须使用 malloc 分配内存,然后获取输入。完成后,您需要释放它。

关于c - Scanf for char *路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18034616/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com