求救大佬们
能不能帮我看一下为什么这段编不出来#include <stdio.h>
int main()
{
int a = 123456;
int b = 789456;
char c = "hello";
printf("%d+%d=%s.", a , b , c);
return 0;
} char c = "hello";
这一句有错 改成这样:
#include <stdio.h>
int main()
{
int a = 123456;
int b = 789456;
char c[] = "hello";
printf("%d+%d=%s.", a , b , c);
return 0;
} 一个账号 发表于 2020-2-15 16:44
改成这样:
谢谢
一个账号 发表于 2020-2-15 16:44
改成这样:
为什么要改成这样啊原先的哪里不行啊
好像《带你学c带你飞》里面讲过 wangjijia 发表于 2020-2-15 16:52
为什么要改成这样啊原先的哪里不行啊
你那是一个数组,不是一个字符 wangjijia 发表于 2020-2-15 16:52
为什么要改成这样啊原先的哪里不行啊
字符串要用字符数组来存储
页:
[1]