标签:函数 com ges 包含 元素 ++ 截图 include 错误
1,计算机英语软件截图
#include<stdio.h>
int main()
{
int a[10]={0,1,2,3,4,5,6,7,8,9};
int *p=a;
int fun(int *b);
fun(a);
}
int fun(int *b)
{
int j;
for(j=0;j<=9;j++)
printf("%d\n ",*b+j);
}
标签:函数 com ges 包含 元素 ++ 截图 include 错误
原文地址:http://www.cnblogs.com/zhangwenjing123/p/6666357.html