码迷,mamicode.com
首页 > 其他好文 > 详细

C程序设计作业(三)

时间:2017-04-03 22:14:23      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:循环   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传给这个形参来达到目的.在输出函数时用了循环语句,实现数组的全部元素的输出.

C程序设计作业(三)

标签:循环   com   blog   roc   ges   pre   oid   div   stdio.h   

原文地址:http://www.cnblogs.com/yujinchi/p/6663663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!