C++面试题

当前位置: 面试问题网 > C++面试题 > C语言面试题

C语言面试题

1.在X86系统中,如下变量在内存中的字节存放顺序。
   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/C++面试题,C语言面试题)

2. C语言面试题

3. C语言面试题

4. SQL语言面试题

5. C语言笔试题回忆

6. C语言开发工程师测试题

7. C语言基础笔试题

8. c语言常见笔试题总结

9. C语言笔试题

10. 外企C语言笔试题

本文来源:https://www.mianshiwenti.com/a13241.html

点击展开全部

《C语言面试题》

将本文的Word文档下载到电脑,方便收藏和打印

推荐程度:

进入下载页面
上一篇:C语言50道问题 下一篇:C语言编程题

﹝C语言面试题﹞相关内容

「C语言面试题」相关专题

其它栏目

也许您还喜欢