标题:关于数组名和指针C程序
只看楼主
灰兜兜
Rank: 2
等 级:论坛游民
帖 子:25
专家分:18
注 册:2012-4-15
结帖率:100%
 问题点数:0 回复次数:0 
关于数组名和指针C程序
#include<stdio.h>
int main()
{
    void ch(int **t);
    int i,j;
    int a[3][3];
    int **t;
    t=a;
    for(i=0;i<3;i++)
        for(j=0;j<3;j++)
            scanf("%d",*(t+i)+j);
        ch(t);
}
void ch(int **t)
{
    int i,j,max;
    max=**t;
    for(i=0;i<3;i++)
        for(j=0;j<3;j++)
            if(*(*(t+i)+j)>max)
                max=*(*(t+i)+j);
            printf("%d",max);
}
哪里错误了
搜索更多相关主题的帖子: void 
2012-05-23 14:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-367915-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.070666 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved