首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include using namespace std; int main() { int*p; *p=9; cout<<"The value at p:"<<*p; retu
有如下程序: #include using namespace std; int main() { int*p; *p=9; cout<<"The value at p:"<<*p; retu
admin
2018-06-19
36
问题
有如下程序:
#include
using namespace std;
int main()
{
int*p;
*p=9;
cout<<"The value at p:"<<*p;
return 0:
}
编译运行程序将出现的情况是( )。
选项
A、编译时出现语法错误,不能生成可执行文件
B、运行时一定输出:The value at p:9
C、运行时一定输出:The value at p:*9
D、运行时有可能出错
答案
D
解析
先定义指针变量,然后给指针变量赋初值有三种情况:①用取地址运算符“&”将变量地址赋给指针变量,如p=&a;②将一个指针变量中的地址赋给另一个指针变量,如p=p1;③给指针变量赋空值0,如q=0,表示该指针变量不指向任何变量。而不能用一个常量给指针变量赋初值,所以本题选D。
转载请注明原文地址:https://kaotiyun.com/show/7VAp777K
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
以下程序段的输出结果是intx=5;do{cout<<x--<<end1;}while(!x);
数据库DB、数据库系统DBS、数据库管理系统DBMS之间的关系是()。
结构化分析方法是面向()的自顶向下,逐步求精进行需求分析的方法。
在下面程序的画线处填上适当的内容,使程序执行后的输出结果为1/2005。#include<iostream>usingnamespacestd;classDate{public:Date(intm
已知递归函数f的定义如下:intf(intn){if(n<=1)return1;//递归结束情况f5=5*f3=5*3*f1elsereturnn*f(n-2);//递归}则函数调用语
关系数据库管理系统能实现的专门关系运算包括()。
下列有关数据库的叙述,正确的是()。
在岂个容量为25的循环队列中,若头指针front=9,尾指针Year=16,则该循环队列中共有______个元素。
在一个容量为25的循环队列中,若头指针front=15,尾指针rear=6,则该循环队列中共有______个元素。
在下列枚举符号中,用来表示“相对于当前位置”文件定位方式的是
随机试题
(2002年第1题)破坏反射弧中的任何一个环节,下列哪一种调节将不能进行
锤击沉桩主要是用于()。
A式论述亲子关系类型对儿童发展的影响。
依法治国的中心环节是()
话本
A.todiscoversentencepatternsandgrammaticalrulesB.toexpandvocabularyC.tousethetargetlanguageD.toencourageunsucce
Everyyearlandslides(滑坡)cause25to50deathsand$1.5billionindamageintheUnitedStates.Theyaccountfor15percentof
Aboutabusinessoperatingcycle,whichofthefollowingsisthemostaccurate?
Thousandsofteachersattheelementary,secondary,andcollegelevelscantestifythattheirstudents’writingexhibitsatende
Inthepushtocuttheamountofcarbonwereleaseintotheatmosphere,solutionsusuallyfocusonhowtoreduceourpoweruseo
最新回复
(
0
)