关于C语言指针赋值的问题详解

2016-02-19 09:07 8 1 收藏

今天图老师小编给大家精心推荐个关于C语言指针赋值的问题详解教程,一起来看看过程究竟如何进行吧!喜欢还请点个赞哦~

【 tulaoshi.com - 编程语言 】

一个代码:
代码如下:

#includestdio.h
#includestdlib.h
#define uchar unsigned char
#define uint unsigned int

void display(uchar *p);

char h[4] = {'A','B','C',''};
char e[4] = {'E','F','L',''};
char l[4] = {'M','N','O',''};
char o[4] = {'X','Y','Z',''};

int main(void)
{
    int i;
    char c;
    uint set[5];

    set[0] = h;
    set[1] = e;
    set[2] = l;
    set[3] = l;
    set[4] = o;

       while(1){
           for (i = 0; i 5; ++i){
                display(set[i]);
                printf("n");
                sleep(1);

          }

       }
}

void display(uchar *p)
{
   while(*p != ''){
    printf("%c", *p);
    printf("%c", *(p+1));
    ++p;
    }
}

警报如下:

test.c:21: 警告: 赋值时将指针赋给整数,未作类型转换
test.c:22: 警告: 赋值时将指针赋给整数,未作类型转换
test.c:23: 警告: 赋值时将指针赋给整数,未作类型转换
test.c:24: 警告: 赋值时将指针赋给整数,未作类型转换
test.c:25: 警告: 赋值时将指针赋给整数,未作类型转换
test.c:29: 警告: 传递参数 1 (属于 ‘display')时将整数赋给指针,未作类型转换

其中21-25就是
set[0] = h;
set[1] = e;
set[2] = l;
set[3] = l;
set[4] = o;
29是
display(set[i])

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

虽然只是警报,并且在linux下面也可以运行的很好.但是既然警告了.还是值得讨论下.

待续~
关注中...

如果有哪位知道.可否回复告诉我.谢谢~

------------------------------------------------------------

关于这个问题,我问了寝室的小丁.经过他的修改.程序已经不报警告了.
代码如下:

#includestdio.h
#includestdlib.h
#define uchar unsigned char
#define uint unsigned int

void display(uchar *p);

char h[4] = {'A','B','C',''};
char e[4] = {'E','F','L',''};
char l[4] = {'M','N','O',''};
char o[4] = {'X','Y','Z',''};

int main(void)
{
    int i;
    char c;
    int set[5];

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

    set[0] =(int) h;
    set[1] =(int) e;
    set[2] =(int) l;
    set[3] =(int) l;
    set[4] =(int) o;

       while(1){
           for (i = 0; i 5; ++i){
                display((uchar *)set[i]);
                printf("n");
                sleep(1);

          }

       }
}

void display(uchar *p)
{
   while(*p != ''){
    printf("%c", *p);
    printf("%c", *(p+1));
    ++p;
    }
}

在字模数组的首地址赋值方面用了强制转换为int.在函数调用方面.因为子函数中要求到输入为指针,所以在前面的调用时候,不能单纯的写set[i].而是传指针过去.(uchar *)的强制类型转换是为了配合(uchar *p).
-------------------------------------------
应该注意的2点是:
1.给指针只能传地址,不能传值.否则要做强制类型转换.
2.在做类型转换和赋值时候,应该注意赋值的类型匹配.

来源:http://www.tulaoshi.com/n/20160219/1589635.html

延伸阅读
就指向指针的指针,很早以前在说指针的时候说过,但后来发现很多人还是比较难以理解,这一次我们再次仔细说一说指向指针的指针! 先看下面的代码,注意看代码中的注解! //程序作者:管宁 //站点:www.cndev-lab.com //所有稿件均有版权,如要转载,请务必著名出处和作者 #include iostream #include string usingnamespacestd; voidprint_char(...
  就指向指针的指针,很早以前在说指针的时候说过,但后来发现很多人还是比较难以理解,这一次我们再次仔细说一说指向指针的指针。 先看下面的代码,注重看代码中的注解: !-- frame contents -- !-- /frame contents -- #include iostream  #include string  using ...
printf的格式控制的完整格式: % - 0 m.n l或h 格式字符 下面对组成格式说明的各项加以说明: ①%:表示格式说明的起始符号,不可缺少。 ②-:有-表示左对齐输出,如省略表示右对齐输出。 ③0:有0表示指定空位填0,如省略表示指定空位不填。 ④m.n:m指域宽,即对应的输出项在输出设备上所占的字符数。N指精度。用于说明输出的实型数的小数位...
第一个: ------------------------------------------------------ 代码如下: #include stdio.h #include string.h void tell_me(int f(const char *, const char *)); int main(void) {    tell_me(strcmp);    tell_me(main);    return 0; } void tell_me(int f(const char *, const char *)) {  &n...
Linq项目简介和开发环境的搭建   9月份,微软推出了一项名为“Linq项目”的新技术,用于在.NET语言中集成数据查询的功能。您可以从http://msdn.microsoft.com/netframework/future/得到Linq项目的技术预览版,其中包括大量的介绍文章(英文)和C# 3.0以及VB 9.0的编译器。   Linq项目英文全称为Langu...

经验教程

335

收藏

55
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部