C語言常用筆試題
1.在X86系統中,如下變量在內存中的字節存放順序,C語言常用筆試題
。
DWORD Value1=0x8010011c
UINT Value2=12801
2.ASCII和Unicode有什么區別?漢字是如何顯示的?
3.說出你最熟悉的`三種排序方法,用你最熟悉的語言寫出其中一種。
4.Bool flag
Floot x 與“零值”比較
Char *p
5.是否了解MVC模式,其中M、V、C各表示什么?
6.列舉出你曾經用過或者了解的幾種設計模式?
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語言常用筆試題】相關文章:
1.C語言筆試題
2.c語言類筆試題
4.c語言筆試題大全
5.C語言求職筆試題
6.C語言筆試題目
7.C語言筆試題集錦
8.C語言基礎筆試題