【C语言】指针的定义与访问

#include <stdio.h> #include <math.h> /* 功能:指针的定义与访问 时间:2024年10月 地点:贤者楼129 作者:LChen */ // 指针:地址&与数据* int main() { int count=10; int *p=&count; // 定义指针变量并初始化 // int *p1=100; // 非法指针 //count变量的地址和值 printf("\t address\t\tvalue\n"); printf("count:\t%10p\t%10d\n",&count,count); //指针变量p的地址和值 printf(" p:\t%10p\t%10p\n",&p,p); printf(" \n chage count:\n"); count=20; //用指针变量p访问变量count的地址和值 printf(" p:\t%10p\t%10d\n",p,*p); return 0; }
上一篇:C# 两个进程/exe通讯方式 两个应用程序通讯方式


下一篇:docker逃逸方法汇总与简要分析