热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

C++ 面试题与答案

Test your skills through the online practice test: C++ Quiz Online Practice Test

相关差异对比

C vs C++Java vs C++

问题 61. What is the difference between char a[] = ?string?; and char *p = ?string?; ?


Answer1
a[] = ?string?;
char *p = ?string?;

The difference is this:
p is pointing to a constant string, you can never safely say
p[3]=?x';
however you can always say a[3]=?x';

char a[]=?string?; - character array initialization.
char *p=?string? ; - non-const pointer to a const-string.( this is permitted only in the case of char pointer in C++ to preserve backward compatibility with C.)

Answer2
a[] = ?string?;
char *p = ?string?;

a[] will have 7 bytes. However, p is only 4 bytes. P is pointing to an adress is either BSS or the data section (depending on which compiler ? GNU for the former and CC for the latter).

Answer3
char a[] = ?string?;
char *p = ?string?;

for char a[]??.using the array notation 7 bytes of storage in the static memory block are taken up, one for each character and one for the terminating nul character.

But, in the pointer notation char *p????.the same 7 bytes required, plus N bytes to store the pointer variable ?p? (where N depends on the system but is usually a minimum of 2 bytes and can be 4 or more)??

这有帮助吗? 添加评论 查看评论
 

问题 62. What does extern mean in a function declaration?


It tells the compiler that a variable or a function exists, even if the compiler hasn?t yet seen it in the file currently being compiled. This variable or function may be defined in another file or further down in the current file.

这有帮助吗? 添加评论 查看评论
 

问题 63. How do I initialize a pointer to a function?

This is the way to initialize a pointer to a function
void fun(int a)
{

}

void main()
{
void (*fp)(int);
fp=fun;
fp(1);

}

这有帮助吗? 添加评论 查看评论
 

问题 64. How do you link a C++ program to C functions?


By using the extern "C" linkage specification around the C function declarations.

这有帮助吗? 添加评论 查看评论
 

问题 65. Explain the scope resolution operator.


It permits a program to reference an identifier in the global scope that has been hidden by another identifier with the same name in the local scope.

这有帮助吗? 添加评论 查看评论
 

4) How do you link a C++ program to C functions? 5) Explain the scope resolution operator. " />

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。