gpt4 book ai didi

c - 如何避免 get_string 错误?

转载 作者:太空宇宙 更新时间:2023-11-04 08:05:32 25 4
gpt4 key购买 nike

<分区>

我正在学习 CS50 类(class),pset2 缩写。我得到的唯一错误是 get_string 的问题:它会有一个“不兼容的指针类型初始化”string,表达式类型为“string (void)”。我真的不明白我做错了什么,因为我的 get_string 代码适用于最后一个问题集。这是我的代码:

#include <cs50.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>

int main(void)
{
// ask user for input
printf("What are your names?");
string s = get_string;

// print first letter from string & capitalize
printf("%c", toupper(s[0]));


//iterate over characters in current string + start loop
for (int i = 0; i < strlen(s); i++)
{
//find space character
if (s[i] == ' ')
{
// print character next to space & capitalize
printf("%c", toupper(s[i++]));
}
// new rule
printf("\n");
}
}

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