标签:blog 作业 arp process images for循环 http printf clu
#include<stdio.h> int main() { void fun(int *q);//声明函数 int a[10]={1,2,3,4,5,6,7,8,9,10};//定义一个数组 int *p;//定义一个指针 p=a;//让指针指向数组的第一个数的地址 fun(p);//调用fun函数 } void fun(int *q)//定义一个函数 { int i; for(i=0;i<=9;i++) { printf("%d ",*q); q++; }//用for循环输出数组,每次循环使指针地址增加以指向数组的下一个数 }
1 2 3 4 5 6 7 8 9 10 -------------------------------- Process exited after 0.1179 seconds with return value 0 请按任意键继续. . .
标签:blog 作业 arp process images for循环 http printf clu
原文地址:http://www.cnblogs.com/ruguwen/p/6666351.html