gpt4 book ai didi

c - 我在使用 get_string 函数时遇到问题

转载 作者:行者123 更新时间:2023-11-30 16:14:47 26 4
gpt4 key购买 nike

经过在 Windows Vscode 上的多次试验,我终于让 cs50 库正常工作了。现在的问题是 get_string 函数无法按如下方式工作:

int main(void)
{
string s = get_string("Enter string: ");

// ensure string was read
if (s == NULL)
{
return 1;
}

string next = get_string("You just entered %s. Enter a new string: ", s);

if (next == NULL)
{
return 1;
}

printf("Your last string was %s\n", s);
}

当我写作时

string name = get_string("Give me a name:");

我收到错误

In file included from hello.c:1:0:
cs50.c:78:8: note: expected ‘char **’ but argument is of type ‘char *’
string get_string(va_list *args, const string format, ...)
^~~~~~~~~~
hello.c:10:16: error: too few arguments to function ‘get_string’
string name = get_string("Give me a name:");
^~~~~~~~~~
In file included from hello.c:1:0:
cs50.c:78:8: note: declared here
string get_string(va_list *args, const string format, ...)

这是我的代码。我基本上是在测试函数中不需要的 get_string 函数。

#include "cs50.c"
#include "cs50.h"
#include <stdio.h>
#include <stdlib.h>

int main()
{

char str[20] = "#";
string name = get_string("Give me a name:");
printf("What height of pyramid \n");
int user;
if(scanf("%d", &user))
{
for (int i =0; i< 8; i++)
{
if(user <= 0 || user > 8 )
{
printf("Height: %d \n", user);
printf("Provide value between 1 and 8 \n");
scanf("%d", &user);

}


}
printf("\n");
int i;


for (i = 1; i <= user; i++) {
for(int k = user; k > i; k--){
putchar(' ');
}
int j;
for (j = 0; j < i; j++) {

putchar('#');

}
putchar('\n');

}
return EXIT_FAILURE;
}

}

我想写

string s = get_string("Enter string: ");

并在运行代码时在终端中得到提示。

最佳答案

事实上,通过反复试验并没有给你带来完全正确的解决方案。问题其实很简单。 get_string你应该使用 cs50.h 中的宏。 cs50.c 删除此宏定义并按名称 get_string 定义另一个函数(是的,这太糟糕了)。最终结果是你不能#include <cs50.c>使代码即使在单文件应用程序中也能工作。

你需要做的只是

#include <cs50.h>

并添加 cs50.c作为项目中的另一个翻译单元,即如果您的主程序是 prog.c您将添加 cs50.c作为同一文件夹中的文件。

关于c - 我在使用 get_string 函数时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57423801/

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