2021年11月17日

C语言程序设计-笔记7-指针

摘要: C语言程序设计-笔记7-指针 例8-1 利用指针模拟密码开锁游戏。 #include<stdio.h> int main(void) { int x=5342; //变量x用于存放密码值 int *p=NULL; p=&x; printf("If I know the name of the var 阅读全文

posted @ 2021-11-17 23:25 yf.x 阅读(289) 评论(0) 推荐(0) 编辑

导航