相信很多想要進入摩托羅拉公司的工作的朋友,一定想知道其招牌時筆試面試都會考什么內(nèi)容吧!為此今天小編為大家整理的了一系列題目,以供大家參考!
1.打印如下圖案,共19行,只能有一個for循環(huán)。
*
***
*****
*******
*********
***********
*************
***************
*****************
*******************
*****************
***************
*************
***********
*********
*******
*****
***
*
2.#define f1(n) (n)*(n)
int i=5;
int k=0;
k=f1(i++);
printf("%d %d",i,k);
輸出結(jié)果是?
3.下面哪個for循環(huán)是無限循環(huán)?
for(int i=010;i==10;i+=0)
for(int i=10;(i++^--i)==0;i+=0)
4.Email relay 和Email access分別用了什么協(xié)議?
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
printf("%2x",*(p+i));
在80x86pc機器上和Sun Sparc Unix上運行結(jié)果分別是?
7.char a[2][2][3]={{{1,6,3},{5,4,15}},{{3,5,33},{23,12,7}} };
for(int i=0;i<12;i++)
printf("%d ",_______);
空格處填上合適的語句,順序打印出a中的數(shù)字。
8.void fun(char *a,char *b){
a=b;
(*a)++;
}
void main(){
char s1='A',s2='a';
char *p1=&s1;
char *p2=&s2;
fun(p1,p2);
printf("%c%c",s1,s2);
請寫出輸出結(jié)果。