- 相关推荐
编程人员笔试题
1. What will be the output of the following C code?
main()
{
int k, num= 30;
k =(num > 5 ? (num <=10 ? 100:200): 500);
printf(“%d”, k);
}
2. What will the following C code do?
int *ptr;
ptr =(int *)Ox67a9;
*ptr = Oxaa55;
3. What will be the output of the follow C code?
#define product(x) (x*x)
main()
{
int i = 3, j, k;
j = product(i++);
k = product(++i);
printf(“%d %d”,j,k);
}
【编程人员笔试题】相关文章:
威盛编程面试题目07-06
中兴2015笔试题08-02
迅雷2011.10.21笔试题08-10
笔经:加强型试题07-22
采购人员笔试题,试题分享02-25
数控机床编程与操作考试题及答案11-24
海尔04年笔试题及答案07-31
编程人员岗位职责(通用14篇)08-19
微创笔试题 智力题和编程题08-09
编程人员求职个人简历表格05-21