#include <stdio.h> int main(int argc, char *argv[])
{
printf("Hello, world\n");
char c[];
int *p = NULL;
p = (int *)(&c[]);
*p = 0X01020304;
printf("%d--%d--%d--%d--",c[],c[],c[],c[]);
return ;
}
结果是:4--3--2--1
指针步长,字符串占一个字节,整型变4个字节.
其他知识点 intel的大端小端