C语言同时定义2个字符串的时候 第一个的名字输出后 会跟着就输出后一个 求大神指点 怎么分开啊?
#include<stdio.h>#include<string.h>structsanguo{charc[2];//country国家魏蜀吴weishuwucharna...
#include <stdio.h>
#include <string.h>
struct sanguo
{
char c[2]; //country 国家 魏蜀吴 wei shu wu
char name[50];
int f; //force 武力值 最高255
int i; //intellect 智力值 255最高
};
void intput(struct sanguo *q);
void output(struct sanguo *r);
int main(void)
{
struct sanguo p;
intput(&p);
output(&p);
return 0;
}
void intput(struct sanguo *q)
{
strcpy(q->c, "蜀");
strcpy(q->name, "关羽");
q->f = 250;
q->i = 200;
}
void output(struct sanguo *r)
{
printf("国家:%s 人物:%s 武力:%d 智力:%d\n", r->c, r->name, r->f, r->i);
}
输出结果是:
国家:蜀关羽
人物:关羽 武力:250 智力:200
怎么让 国家那边的输出 后面不接着输入名字? 求解
顺便求告知一下 2个函数中 为什么不能用*q *r必须用 q r
我不是*q 等于p吗? 为什么不可以用? 展开
#include <string.h>
struct sanguo
{
char c[2]; //country 国家 魏蜀吴 wei shu wu
char name[50];
int f; //force 武力值 最高255
int i; //intellect 智力值 255最高
};
void intput(struct sanguo *q);
void output(struct sanguo *r);
int main(void)
{
struct sanguo p;
intput(&p);
output(&p);
return 0;
}
void intput(struct sanguo *q)
{
strcpy(q->c, "蜀");
strcpy(q->name, "关羽");
q->f = 250;
q->i = 200;
}
void output(struct sanguo *r)
{
printf("国家:%s 人物:%s 武力:%d 智力:%d\n", r->c, r->name, r->f, r->i);
}
输出结果是:
国家:蜀关羽
人物:关羽 武力:250 智力:200
怎么让 国家那边的输出 后面不接着输入名字? 求解
顺便求告知一下 2个函数中 为什么不能用*q *r必须用 q r
我不是*q 等于p吗? 为什么不可以用? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |