1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 意法半導(dǎo)體軟件測(cè)試筆試題分享

        時(shí)間:2022-11-06 10:36:28 綜合指導(dǎo) 我要投稿
        • 相關(guān)推薦

        意法半導(dǎo)體軟件測(cè)試筆試題分享

        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 , static variables 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; 
          root = dtree (root, h, w) ; // h and w are integers get from input 
          ......... 
          } 

        【意法半導(dǎo)體軟件測(cè)試筆試題分享】相關(guān)文章:

        軟件測(cè)試工程師面試題及答案分享08-08

        軟件測(cè)試筆試題及答案08-04

        軟件測(cè)試筆試題及答案下載08-08

        威盛軟件最新筆試題分享08-10

        2016華為軟件測(cè)試筆試題及答案08-17

        交通銀行2014筆試題題目分享08-10

        個(gè)人能力測(cè)試筆試題型分享08-10

        攀枝花移動(dòng)筆試題,筆經(jīng)分享08-10

        騰訊筆試題 試題分享08-09

        采購(gòu)人員筆試題,試題分享08-10

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>