网易2016实习研发工程师选择题
时长:90分钟 总分:100分
171浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 15 | 11 |
下面程序的输出结果是
#include<iosteam.h> void main(){ int n[][3] = {10,20,30,40,50,60} int (*p)[3] p=n cout<<p[0][0]<<","<<*(p[0]+1)<<","<<(*p)[2]<<endl
}
头文件已经正常包含,以下代码在VS IDE上编译和运行结果是
class A{ public: void test(){printf("test A")} } int main() { A *pA = NULL pA->test() return 0 }
在#pragma pack(4)和#pragma pack(8)的情况下,结构体的大小分别是
struct One{ double d char c int i } struct Two{ char c double d int i }
在上下文和头文件均正常情况下,以下程序的输出结果是
int x = 1 do{ printf("%2d\n",x++) }while(x--)