摘要: ex1: 1 #include <stdio.h> 2 3 const int N=3; 4 int main() { 5 int a[N] = {1, 2, 3}; 6 int i; 7 8 printf("通过数组名及下标直接访问数组元素:\n"); 9 for(i=0; i<N; i++) 1 阅读全文
posted @ 2020-12-18 00:45 卷心菜投手 阅读(53) 评论(2) 推荐(0) 编辑