2018迅雷校园招聘客户端在线笔试B卷
时长:120分钟 总分:100分
140浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 填空题 |
---|---|---|---|
数量 | 15 | 10 | 2 |
整数求和
32位机器上,以下结构的sizeof(P)为struct A { int ...
struct A { int a char b int c char d } struct P { struct A w[2] short b struct A* p }
以下哪个值最大 void test() { int s1 int s2...
void test() { int s1 int s2 int *s3 = (int *)malloc(4) int *s4 = (int *)malloc(4) }
给定fun函数如下,那么fun(10)的输出结果是()int fun(in...
int fun(int x) { return (x==1) ? 1 : (x + fun(x-1)) }
判断一包含n个整数a[]中是否存在i、j、k满足a[i] + a[j] =...
某公司现有职员信息表(employee)如下:工号 id int 例如: ...
工号 id int 例如: 32454
姓名 name char(40) 例如: 姚明
性别 sex int 例如: 0, (0表示男, 1表示女)
入职时间 entrytime int 例如: 20110101
工作岗位 keypost int 例如: 研发
工作绩效 performance text 例如: S|A|B|C|B, (其中S>A>B>C)
关于下面查询语句,不正确的是:
这段代码执行后的输出结果是: char *str = “Thunde...
char *str = "Thunder Network" str[0] = '\0' printf("%s\n", str)
下列迭代器的用法哪些是错误的?const vector ivec(10)...
const vector<int> ivec(10)
vector<string> svec(10)
list<int> ilist(10)</int></string></int>