12 2020 档案

摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa 阅读全文
posted @ 2020-12-22 00:11 谢库拉/凌/伊鲁席尔智 阅读(103) 评论(1) 推荐(0)
摘要:实验一 # include<stdio.h> const int N=3; int main(){ int a[N]={1,2,3}; int i; printf("通过数组名及下标直接访问数组元素:\n"); for(i=0;i<N;i++) printf("%d:%d\n",&a[i],a[i] 阅读全文
posted @ 2020-12-15 20:29 谢库拉/凌/伊鲁席尔智 阅读(109) 评论(2) 推荐(0)