免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3482 | 回复: 4
打印 上一主题 下一主题

[C] gcc编译时提示类型冲突 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-03 15:44 |只看该作者 |倒序浏览
#include <stdio.h>
#define MAX 5
// Write a program that declares a 3x5 array and initializes it to some values of your choice. Have the program print the values, double all the values, and then display the new values. Write a function to do the displaying and a second function to do the doubling. Have the functions take the array name and the number of rows as arguments.

void dispaly_ptr(int (*)[MAX],int);
void double_ptr(int (*)[MAX],int);

int main(void)
{
        int arr[][MAX]={{1,2,3,4,5},{6,7,8,9,10},{11,12,13,14,15}};

        printf("original is :\n");
        display_ptr(arr,3);

        double_ptr(arr,3);

        printf("now is :\n");
        display_ptr(arr,3);

        return 0;
}

void display_ptr(int (*arr)[MAX],int n)
{
        int i,j;

        for(i=0;i<n;i++)
        {
                for(j=0;j<MAX;j++)
                        printf(" %d",*(*(arr+i)+j));
                printf("\n");
        }
}

void double_ptr(int (*arr)[MAX],int n)
{
        int i,j;
       
        for(i=0;i<n;i++)
                for(j=0;j<MAX;j++)
                        *(*(arr+i)+j)*=2;
}


[watch@pt10 chapter10]$ gcc 10.c -o 10
10.c:24: warning: conflicting types for ‘display_ptr’
10.c:13: warning: previous implicit declaration of ‘display_ptr’ was here

求指导?

论坛徽章:
0
2 [报告]
发表于 2012-08-03 15:50 |只看该作者
void dispaly_ptr(int (*)[MAX],int);
display_ptr(arr,3);

论坛徽章:
0
3 [报告]
发表于 2012-08-03 15:53 |只看该作者
现在貌似处于短路状态,看了半天实在找不原因来,能否说明白点回复 2# Moon_Bird


   

论坛徽章:
14
巨蟹座
日期:2013-11-19 14:09:4615-16赛季CBA联赛之青岛
日期:2016-07-05 12:36:0515-16赛季CBA联赛之广东
日期:2016-06-29 11:45:542015亚冠之全北现代
日期:2015-07-22 08:09:472015年辞旧岁徽章
日期:2015-03-03 16:54:15巨蟹座
日期:2014-12-29 08:22:29射手座
日期:2014-12-05 08:20:39狮子座
日期:2014-11-05 12:33:52寅虎
日期:2014-08-13 09:01:31巳蛇
日期:2014-06-16 16:29:52技术图书徽章
日期:2014-04-15 08:44:01天蝎座
日期:2014-03-11 13:06:45
4 [报告]
发表于 2012-08-03 16:18 |只看该作者
本帖最后由 bruceteen 于 2012-08-03 16:21 编辑

回复 3# xiaowh00
眼神不好?一个是 paly,一个是 play

*(*(arr+i)+j) 超级蛋疼,arr【i】【j】
(再次吐槽一下,这个bbs的设计者真是脑子有病,在一个频繁粘贴代码的论坛上,竟然默认用什么狗屎的“编辑器代码”)

论坛徽章:
0
5 [报告]
发表于 2012-08-03 16:23 |只看该作者
原来是这样,谢谢啊
我一直在以为是类型不匹配,但是找了半天,蛋都碎了,原来是拼写错误,我汗~~~
数组的写法我知道,现在主要想多练习下指针的用法而已,再次感谢哈
回复 4# bruceteen


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP