gpt4 book ai didi

c - 'target_tweet'的地址永远不会是NULL!?

转载 作者:行者123 更新时间:2023-11-30 19:52:44 27 4
gpt4 key购买 nike

我该如何解决这个警告?它显然阻止我使用 gcc 进行编译。我错过了什么吗?

#include <stdio.h>
#include <string.h>
int main(void) {

int MAX_TWEET_SIZE = 32;
char target_tweet[MAX_TWEET_SIZE];
int MAX_SIZE = 140
char tweet[MAX_SIZE];
int match = 0;

printf("Enter Target Tweet\n");

fgets(target_tweet, MAX_TWEET_SIZE, stdin);

if (target_tweet[0] != '#'){
printf ("ERROR\n");
return 0;
}


printf("Enter Tweets!\nenter '.' to quit:\n"){

while (1){
scanf("%s", tweet);
if (strcmp(tweet, target_tweet == 0)){ /* error comes in here */
print ("Tweet Matched.\n");
match = match + 1;
}

if ((tweet[0] = '.')){
printf("%d tweet(s) matched\n", match);
break;
}
}
return 0;
}

(如果有任何拼写错误,那是因为我必须手动键入代码,因为它不允许我从编译器复制粘贴......)

基本上,我试图绕过警告“如果可能的话,‘target_tweet’的地址永远不会为 NULL。我 100% 无能为力。

最佳答案

这里有一个拼写错误

strcmp(tweet, target_tweet == 0)

这应该是

strcmp(tweet, target_tweet) == 0

关于c - 'target_tweet'的地址永远不会是NULL!?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27576311/

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