pptr.htm
来自「Thinking in C 电子书的源代码」· HTM 代码 · 共 13 行
HTM
13 行
<html><font size="+1"><pre>
/* pptr.c: Illustrates pointers to pointers */
#include <stdio.h>
int main() {
int i = 7, *ip = &i, **ipp = &ip;
printf("Address %p contains %d\n", ip, *ip);
printf("Address %p contains %p\n", ipp, *ipp);
printf("**ipp == %d\n", **ipp);
return 0;
}
</pre></font></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?