C語(yǔ)言常用筆試題

時(shí)間:2018-12-31 12:00:00 資料大全 我要投稿

C語(yǔ)言常用筆試題

  1.在X86系統(tǒng)中,如下變量在內(nèi)存中的字節(jié)存放順序,

C語(yǔ)言常用筆試題

。

C語(yǔ)言常用筆試題

  DWORD Value1=0x8010011c

  UINT Value2=12801

  2.ASCII和Unicode有什么區(qū)別?漢字是如何顯示的?

  3.說(shuō)出你最熟悉的`三種排序方法,用你最熟悉的語(yǔ)言寫出其中一種。

  4.Bool flag

  Floot x 與“零值”比較

  Char *p

  5.是否了解MVC模式,其中M、V、C各表示什么?

  6.列舉出你曾經(jīng)用過(guò)或者了解的幾種設(shè)計(jì)模式?

  7.int iVal1 = 0, iVal2 = 0;

  int * ipVal;

  ipVal = &iVal1; What is the Value of ipVal = *ipVal =

  ipVal = (int*)iVal1; What is the Value of ipVal = *ipVal =

  iVal2 = (int)&iVal1; What is the Value of ipVal = *ipVal =

  8.void SwapAB(int A, int B)

  {

  A=B;

  B=A;

  }

  int main()

  {

  int A,B;

  A=1;

  B=2;

  SwapAB(A,B);

  return 0; // A= ?, B= ?

  }

  What is the value of A and B ?

  What is the difference between STRUCTURE and OBJECT ORIENTED PROGRAMMING ?

  What is the difference between C and C++ ?

  What is an interpreter ?

【C語(yǔ)言常用筆試題】相關(guān)文章:

1.C語(yǔ)言筆試題

2.c語(yǔ)言類筆試題

3.GE:C語(yǔ)言筆試題

4.c語(yǔ)言筆試題大全

5.C語(yǔ)言求職筆試題

6.C語(yǔ)言筆試題目

7.C語(yǔ)言筆試題集錦

8.C語(yǔ)言基礎(chǔ)筆試題