标签:循环 com blog roc ges pre oid div stdio.h
1.
2.码云账号:于金池
3.
#include<stdio.h>//定义头文件 #include<stdlib.h>//定义头文件 int main() { void fun(int *q,int n);//调用fun函数 int a[]={0,1,2,3,4,5,6,7,8,9};//定义一个整型数组并且赋初值 int*p;//定义指针p p=a;//将数组a的首元素地址赋给指针p fun(p,10); } void fun( int *q,int n)//定义fun函数 { int i=0;//定义整型变量i并且赋初值 for(i=0;i<n;i++)//让变量i执行循环 printf("%d\n",*(q+i) );//输出数组的10个元素 }
0
1
2
3
4
5
6
7
8
9
--------------------------------
Process exited after 0.207 seconds with return value 0
请按任意键继续. . .
【总结】:为了不让调用函数中出现数字10,需要在定义fun函数的时候用两个形参,然后在主函数中把10传给这个形参来达到目的.在输出函数时用了循环语句,实现数组的全部元素的输出.
标签:循环 com blog roc ges pre oid div stdio.h
原文地址:http://www.cnblogs.com/yujinchi/p/6663663.html