标签:.com pre 三次 src 技术 ++ int com printf
#include<stdio.h> int main() { int a[10]={0,1,2,3,4,5,6,7,8,9}; int *p=a; int fun(int *b); fun(a); } int fun(int *b) { int j; for(j=0;j<=9;j++) printf("%d ",*b+j); }
标签:.com pre 三次 src 技术 ++ int com printf
原文地址:http://www.cnblogs.com/z980605/p/6653643.html