关于指针

简介: malloc与不使用malloc 1 #include 2 #include 3 4 5 typedef struct { 6 int a; 7 char * ch; 8 int aa; 9 }node; 10 11 ...

malloc与不使用malloc

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 
 5 typedef struct {
 6     int a;
 7     char * ch; 
 8     int aa; 
 9 }node;
10 
11 int main()
12 {
13     int *i = NULL;
14     int ii = 10; 
15     i = &ii;
16     printf("local %p\n", i); 
17     node * aa = (node*)malloc(sizeof(node));
18     printf("local %p\n", aa->ch);
19     if(aa->ch ==NULL){
20         printf("local %p\n", aa->ch);
21     }   
22     
23     node bb; 
24     printf("local %p\n", bb.ch);
25     free(aa);
26     return 0;
27 }

root@u18:~/cp/test# ./a.out
local 0x7fffe2aa515c
local (nil)
local (nil)
local 0x400640

 

相关文章
|
7月前
|
存储 程序员 C++
c++指针
c++指针
34 0
|
4月前
|
存储 C语言
一篇文章带你深入了解“指针”(上)
一篇文章带你深入了解“指针”(上)
|
7月前
|
存储 C语言
深入理解指针(1)
深入理解指针(1)
43 2
|
7月前
|
存储 数据处理 C++
C++中的指针:深入理解与应用
C++中的指针:深入理解与应用
|
7月前
|
人工智能
## 对指针的理解
## 对指针的理解
25 0
|
7月前
|
存储
什么是指针?
什么是指针。
47 1
|
7月前
指针(3)
指针(3)
29 0
|
7月前
|
编译器
指针(1)
指针(1)
32 0
|
7月前
|
存储 编译器
指针
指针
39 0
详解C指针
对于C语言开发来说内存的管理显得很重要,尤其是对于初学者刚学指针会感到头疼,学了很久也不知道指针到底是个什么东西,本文将简单介绍指针相关的内容。
详解C指针