最新回答 / 小付的夏天
将hello.c中的#include "test.c",这一行删去,在函数printLine之前加上extern(事实上可省略)使其成为外部函数,使其能被test.c调用从而在test.c中完成函数say,函数say默认为外部函数,能被(删去#include "test.c"的)hello.c调用,从而完成。
2021-09-25
最赞回答 / qq_慕容5472128
运行if后i变为负数-1之后sum+=i结果为-1(sum=0)下一次for循环i的值变为-1后运行i++结果为i=0无限循环所以不会运行
2021-09-24
#include <stdio.h>
int main()
{
char c = 'a';
int n = c; //将c赋值给n
float f = c; //将c赋值给f
double d = c; //将c赋值给d
printf("%d\n",n);
printf("%f\n",f);
printf("%lf\n",d);
return 0;
}
//ASCII中字符‘a’的编号是97
//结果
int main()
{
char c = 'a';
int n = c; //将c赋值给n
float f = c; //将c赋值给f
double d = c; //将c赋值给d
printf("%d\n",n);
printf("%f\n",f);
printf("%lf\n",d);
return 0;
}
//ASCII中字符‘a’的编号是97
//结果
2021-09-23