标签:for stdio.h class 问题 作业 com 技术 img logs
#include<stdio.h> int main() { int a[10]={0,1,2,3,4,5,6,7,}; int *p=a; int fun(int *b); fun(a); } int fun(int *b) { int j; for(j=0;j<=7;j++) printf("%d ",*b+j); }
有一个小问题p=&a[0]是错误的但是书上这个是对的啊
标签:for stdio.h class 问题 作业 com 技术 img logs
原文地址:http://www.cnblogs.com/zbr-123/p/6653769.html