65,202
社区成员




#include <iostream>
using namespace std;
int main()
{
char *p=new char;
unsigned char* t=new unsigned char;
int i=-4;
*p=-4; //p字符指针存储了值为-4,而-4的十六进制为0xfffffffc因此*p的值为十六进制的fc
*t=-4; //同上!
cout<<*p<<endl<<*t;//*p和*t均为fc不可见字符
delete p;
delete t;
return 0;
}