标签:
字符串数组
指针和数组等价转换
void foo(int *p,int n) { int i; for(i=0;i<n;i++) { printf("%d\n",p[i]); //printf("%d\n",*(p+i)); } } void main() { int a[10]; foo(a,10); system("pause"); }
C基础06天--字符串
原文地址:http://www.cnblogs.com/zhuyaguang/p/4823759.html