相信很多想要进入摩托罗拉公司的工作的朋友,一定想知道其招牌时笔试面试都会考什么内容吧!为此今天小编为大家整理的了一系列题目,以供大家参考!
1.打印如下图案,共19行,只能有一个for循环。
*
***
*****
*******
*********
***********
*************
***************
*****************
*******************
*****************
***************
*************
***********
*********
*******
*****
***
*
2.#define f1(n) (n)*(n)
int i=5;
int k=0;
k=f1(i++);
printf("%d %d",i,k);
输出结果是?
3.下面哪个for循环是无限循环?
for(int i=010;i==10;i+=0)
for(int i=10;(i++^--i)==0;i+=0)
4.Email relay 和Email access分别用了什么协议?
5.in a mobile phone,软件运行期stack data (栈)存在于?
A.rom, B .flash C .eeprom D.ram E .none of the above
6.int i;
int x=0x12345678;
unsigned char *p=(unsigned char *)&x;
for(i=0;i