问答题
声明下列指针:float类型变量的指针pfloat,char类型的指针pstr、struct Customer型的指针pcus。
float*pfloat; Char*pstr; Struct customer*pcus
问答题 引用和指针有何区别?何时只能使用指针而不能使用引用?
填空题 在字符串”Hello,world!”中结束符是()。
问答题 声明一个int型指针,用new语句为其分配包含10个元素的地址空间。