意法半导体笔试题

时间:2021-02-10 15:11:19 面试笔试 我要投稿

意法半导体笔试题

  a test for the c programming language

意法半导体笔试题

  i. history

  1. c was originally designed for and implemented on the (what) operating system on the dec pdp-11, by (who) .

  2. the most recently approved ansi/iso c standard was issued in (when), and single line comments notation “//” is or isn’t a feature of c89.

  ii. syntax and semantics 1.in a runtime c program, auto variables are stored in , staticvariables are stored in , and function parameters are stored in .

  a. stack b. heap c. neither stack nor heap

  2. the statement “extern int x;” is a , and the keyword extern is used during .

  a. variable declaration b. variable definition c. compilation time d. runtime

  3. there is a complicated declaration: void ( * signal (int, void(*)(int)) ) (int);if a statement “typedef void (*p) (int);” is given,please rewrite this complicated declaration.

  4. the following code is a segment of c program.

  ..........

  void func(int *p)

  {...........}

  ..........

  main()

  {

  int num=0;

  .........

  func(&num);

  ........

  }

  ..........

  here, the function argument “&num” is passed .

  a. by value b. by reference

  iii. practice

  create a tree, which has h (h>0) layers, and its each node has w(w>0) sub-nodes.please complete the following incomplete solution.

  #include

  #include

  struct tree{

  char info;

  p_sub; //link to sub-nodes};

  // allocate memory and initiate

  void dnode ( struct tree* tmp )

  {

  = malloc( sizeof (struct tree) );

  = 0x41;

  = null;

  }

  struct tree *dtree (struct tree* subtree, int height, int width)

  {

  int i;

  if ( !subtree ) //if necessary, allocte memory for subtree

  denode(subtree);

  if ( height 1 )

  return subtree;

  else if ( height 2 ) {

  struct tree *leaf = null;

  for ( i=0; i

  denode ( );

  ;

  leaf = null;}

  return subtree;}

  else {

  for ( i=0; i

  }

  return subtree;

  }

  }

  main()

  {

  .........

  struct tree *root = null;

【意法半导体笔试题】相关文章:

2017食品安全法培训试题及答案04-07

2017笔试各题型答题技巧02-11

给学弟学妹的求职笔面试总结03-18

揭秘华尔街另类招聘法03-23

2017笔试必备:进出口银行常识汇总04-01

活学活用的职场充电法03-22

8招活学活用的职场充电法03-18

面试笔试题03-22

餐饮服务培训试题03-09

药店职员培训试题03-25