- 博客(4)
- 收藏
- 关注
原创 C语言中 “重定义;不同的基类型” 的错误
原因可能是:函数test()中 使用了 函数_bool(),但是该_bool函数在test()函数前没有声明目前测试了几组:返回值为 bool char double 需要再使用该函数前声明,如图 但是,返回值为 int float 不会有这样的报错总的来说,不管报不报错,先声明后使用,养成好习惯...
2022-01-05 22:11:55
7761
4
原创 结构体的嵌套
结构体的嵌套不能用匿名结构体,如typedef struct { Node* next; int data;}Node;应该写成typedef struct node{ struct node* next; int data;}Node;
2022-01-05 20:53:08
148
原创 成长之路(1)
#include <stdio.h>int main(){ //char str[6], i; //for (i = 0; i < 6; i++) // scanf("%c", &str[i]); 空格也作为字符,也会输出 回车才执行下一个语句 //for (i = 0; i < 6; i++) 单个输出 // printf("%c",str[i])...
2021-06-09 02:20:12
114
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人