摘要: 数组的指针和数组名其实是等价的,数组名可以使用下标,数组的指针也可以: #include <stdio.h> #include<stdlib.h> #include<string.h> int main(void){ char str[]="abc"; char *sp=str; int ints[ 阅读全文
posted @ 2022-07-04 16:11 科学修行的红客 阅读(780) 评论(0) 推荐(0) 编辑