Questions et réponses d'entretien les plus demandées et tests en ligne
Plateforme d'apprentissage pour la preparation aux entretiens, les tests en ligne, les tutoriels et la pratique en direct

Developpez vos competences grace a des parcours cibles, des tests blancs et un contenu pret pour l'entretien.

WithoutBook rassemble des questions d'entretien par sujet, des tests pratiques en ligne, des tutoriels et des guides de comparaison dans un espace d'apprentissage reactif.

Preparation a l'entretien

Tests blancs

Definir comme page d'accueil

Ajouter cette page aux favoris

S'abonner avec une adresse e-mail

C++ Questions et reponses d'entretien

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

Differences associees

C vs C++Java vs C++

Question 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)??

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 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.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 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);

}

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

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


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

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 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.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

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

Les plus utiles selon les utilisateurs :

Copyright © 2026, WithoutBook.