C算法--指针1
Posted catherinezhilin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C算法--指针1相关的知识,希望对你有一定的参考价值。
1 #include <stdio.h> 2 3 /*在变量前面加上&就可以表示变量的地址*/ 4 int main() 5 int a=1; 6 printf("%d,%d\n",&a,a); 7 return 0; 8
指针变量
int* p;
double* p;
char* p;
int* p1,p2; //p1是int*型的,p2是int 型的。
-------------------
int a;
int *p=&a;
或
int a;
int *p;
p=&a;
---------------
int a,b;
int *p1=&a,*p2=&b;
--------------------------
1 #include <stdio.h> 2 3 int main() 4 int a; 5 int *p=&a; 6 a=233; 7 printf("%d\n",p);//p是地址 8 printf("%d\n",*p);//*p是a存入的值 9 return 0; 10
以上是关于C算法--指针1的主要内容,如果未能解决你的问题,请参考以下文章