摘要:
#include<stdio.h> typedef struct student { char name[20]; int age; }STU; void fun(STU *p){ strcpy(p->name, "张三"); p->age=18; //(*p).age=18 } int main( 阅读全文
摘要:
#include<stdio.h> typedef struct student { char name[20]; int age; }STU; void fun(STU *p,int n){ for(int i=0;i<n;i++){ printf("name=%s age=%d\n", p[i] 阅读全文
摘要:
#include<stdio.h> //声明一个结构体类型 struct student { char name[20]; //名字 int age; }s4,s5,s6;//全局变量 //结构体的自引用 struct Node{ int data; struct Node *next; }; // 阅读全文
摘要:
#include<stdio.h> //链表结点的数据结构 struct ListNode{ int val;//数据域 struct ListNode *next;//连接下一个节点的指针 }; int main(){ // &取地址运算符 *间接运算符 int a=5; int v=*(&a); 阅读全文
摘要:
#include<stdio.h> typedef struct student { char name[20]; int age; }STU; int main(){ STU boy; // 结构体的地址=第一个成员的地址(但是类型不同) printf("&boy=%p\n",&boy); //S 阅读全文
摘要:
import time from selenium import webdriver from selenium.webdriver.support.wait import WebDriverWait from selenium.webdriver.support import expected_c 阅读全文