C語言常用筆試題
1.在X86系統(tǒng)中,如下變量在內存中的字節(jié)存放順序。
DWORD Value1=0x8010011c
UINT Value2=12801
2.ASCII和Unicode有什么區(qū)別?漢字是如何顯示的?
3.說出你最熟悉的'三種排序方法,用你最熟悉的語言寫出其中一種。
4.Bool flag
Floot x 與“零值”比較
Char *p
5.是否了解MVC模式,其中M、V、C各表示什么?
6.列舉出你曾經(jīng)用過或者了解的幾種設計模式?
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語言常用筆試題】相關文章:
C語言基礎筆試題12-27
C語言筆試題集錦12-27
外企C語言筆試題12-25
C語言筆試題回憶12-25
C語言筆試題總結12-25
c語言常見筆試題總結12-25
C語言游戲開發(fā)筆試題06-15
華為C語言招聘筆試題目07-26
上海貝爾c語言筆試題07-03