C语言面试题
编辑: 面试啦 发布时间: 2023-11-25 12:09:03
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 ?
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面试题
面试题库导航
- C++面试题
- JAVA面试题
- Oracle面试题
- MySQL面试题
- Linux面试题
- 网络工程师面试题
- 网管面试题
- 软件工程师面试题
- PHP面试题
- .net面试题
- 软件测试面试题
- EJB面试题
- Spring面试题
- Javascript面试题
- Python面试题
- QTP面试题
- Servlet面试题
- J2EE面试题
- Database面试题
- ASP面试题
- Unix面试题
- Loadrunner面试题
- 通信面试题
- 嵌入式面试题
- Ruby面试题
- Delphi面试题
- Mobile开发面试题
- SOA面试题
- JAVA面试题面试题
- 研发工程师面试题
- 软件架构师面试题
- 系统工程师面试题
- Android面试题
- JAVA程序员
- C#面试题