📄 program7_05a.c
字号:
/* Program 7.5A Arrays and pointers taken further */
#include <stdio.h>
int main(void)
{
char multiple[] = "another string";
printf("\nAddress of second element: %p", &multiple[1]);
printf("\nValue of multiple+1 : %p\n", multiple+1);
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -