码迷,mamicode.com
首页 > 编程语言 > 详细

c语言指针作业

时间:2017-03-18 17:35:19      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:clu   images   stdio.h   printf   include   ima   std   技术分享   http   

#include<stdio.h>
#include<conio.h>
main()
{int a[4]={1,3,3,4},*p;

  p=a;
for(int i=0;i<4;i++)
{
printf("%d\n",*p);
*p++;
}
getch();
}
技术分享
 

c语言指针作业

标签:clu   images   stdio.h   printf   include   ima   std   技术分享   http   

原文地址:http://www.cnblogs.com/lemonfk/p/6574724.html

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