菜鸟求大神帮看代码哪里有错
#include <stdio.h> #include <stdlib.h> #define L sizeof(struct student) struct student //定义学生链表结点类型 { long ID;//学号 char name[12];//姓名 char sex[3];//性别 int age……
scanf和gets函数的区别
scanf和gets 缓冲区 \n的问题 #include<stdio.h> #include<stdlib.h> #include<string.h> #define PI 3.14159 int main() { int x,y,z; char reciv[11]; while(1)……
C 的(++j)+(++j) 为什么和php的结果不一样,j=1
C 的(++j)+(++j) 为什么和php的结果不一样,j=1 我可以发表一下自己的看法吗!?c中的答案应该是3 而php中应该是4 编译器的默认不同!我也是新手!回答不好的地方请谅解 你这最后输出问的是j的值吧 引用 1 楼 cfy520gh 的回复: 我可以发表一下自己的看法吗!?c中的答案应该是……
这种情况是什么原因造成的
宏 是和宏定义的参数有猫腻的原因吗 5分 看着颜色像是ubuntu, 这里的原因是“宏中遇到#或##时就不会再展开宏中嵌套的宏了”。 就这么一规则,不要想太多,知道即可。 5分 我再加两个,好好感受一下: printf("%s\n", h(g(f(1, 2)))); printf("%s\n", g(f(g(1), g……
个人不明白为什么提交代码后会得到runtime error的结果,求指点迷津
这是题目内容 以下是本人代码 #include<stdio.h> int main() { int year,month,day,t,k,sum,i; int a[2][13]= { {0,31,28,31,30,31,30,31,31,30,31,30,31}, {0,31……