c语言指针点滴1

Posted L的存在

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言指针点滴1相关的知识,希望对你有一定的参考价值。


 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 void main()
 5 {
 6     int *p = NULL;//指针开始最好都初始化为空
 7     if(p == NULL)
 8     {
 9         printf("妹子p现在是单身 可以疯狂的进攻");
10     }else
11     {
12         printf("妹子p不是单身 请慎重考虑");
13     }
14     //printf("%d",*p);//不合法0x000000操作系统使用 不可以随便玩 
15 
16     getchar();
17 }

 

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 void main1()
 5 {
 6     int num = 100;
 7     int *p;//error 使用了未初始化的局部变量
 8     //在一些c++编译器里面 不检查变量的初始化,指针使用之前必须初始化
 9     //p = num;//相对于把100的地址给了p  可以编译不能运行
10     p = &num;
11     printf("%d",*p);
12     printf("%x",&p);
13 
14 
15     getchar();
16 }

 

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 void main4()
 5 {
 6     double a = 1,b=2,c=3;//double8个字节
 7     //double *pa,pb,pc;//指针四个字节 pa是指针 
 8     double *pa,*pb,*pc;
 9     printf("%d%d%d",sizeof(pa),sizeof(pb),sizeof(pc));
10 }

 

以上是关于c语言指针点滴1的主要内容,如果未能解决你的问题,请参考以下文章

c指针点滴三(指针运算)

c指针点滴4-指针的值

c指针点滴-指针与类型

c指针点滴5-指针变量计算

重温C语言小感

为啥在访问二级指针时出现分段错误错误? C语言