还有个浮点数~
[code]/*~个性签名:bug是什么意思?bug是看上去没有可能的东西实际上是有可能做到的 就是这样~2018-08-08更~*/[/code]
#include<stdio.h> char * a="this is a test text."; int main() { char * b="this is a test text."; char* p=a; char* q=b; printf("&p=%p \n&q=%p \n",&p,&q); return 0; } /* &p=0012FF54 &q=0012FF48 */
#include <stdio.h> int main( void ) { char *P1 = "Hello World"; char *P2 = "Hello World"; printf( "虽然此前并未测试,但我相信,这两个指针指向的值是一样的\n" ); printf( "P1 = %p\n", P1 ); printf( "P2 = %p\n", P2 ); return 0; } /* 虽然此前并未测试,但我相信,这两个指针指向的值是一样的 P1 = 00405064 P2 = 00405064 */