Hard
What does the following code return ?
int saisirEntier() {
int n;
cout << "Saisir un entier" << endl;
cin >> n;
if (n > 0) {
return n;
}
}
int main() {
int n = saisirEntier();
return 0;
cout << "Success !" << endl;
}
Author: SamuelStatus: PublishedQuestion passed 282 times
Edit
-2
Community Evaluations
Dragon parfait
04/10/2024
Une fonction avec un type n'étant pas void doit toujours renvoyer une valeur, or ici ce n'est pas toujours le cas. à noter qu'en corrigeant cette erreur, l'exécution n'afficherait toujours pas "Success !" car cette instruction est placée aprÚs un return qui stoppe l'exécution d'une fonction.
Ce n'est plus vrai ?
Auteur anonyme
29/08/2024
This one is wrong, it doesn't display anything since it displays the std::cout of the int function, which works without error, and then it exits directly without displaying the std::cout of the body of the main function. But there's no error! It's the behavior expected by the written code! So a, b, c and d are totaly false
Similar QuestionsMore questions about C++
4
Write a C++ class with a constructor that takes two arguments.3
Which statement concerning constructors is false ?2
How to distinguish a parameter of a method from an attribute of the class in C++2
Which type should you use to represent a data list with a length that can change ?1
The operator + has been defined for Complexe objects thanks to an intern overloading.