十六进制的地址为什么要00开头而不是0x?
#include <iostream>
using namespace std;
int main()
{
int a=10;
double b=10.11;
cout << \"The value of a is \" << a << \" and the address of a is \" << &a << endl ;
cout << \"The value of b is \" << b << \" and the address of b is \" << &b << endl ;
return 0;
}