- 博客(2)
- 收藏
- 关注
原创 C语言 有头结点的动态链表的创建
条件:当输入0停止继续建立链表 #include<stdio.h> #include<stdlib.h> typedef struct node { int data; //链表数据域 struct node *next; //链表指针域 }Node; void DeletNode(Node *pHead, int data); ...
2019-07-22 00:33:20 1071
原创 printf返回值的意义(小白理解法)
#include<stdio.h> int main() { int t = 23; printf("%d\n", printf("%d", printf("%d", printf("%d", t)))); putchar(10); printf("%d\n", printf("%d", printf("%d", t)));
2019-01-31 02:13:56 2080
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人