Question from the C++ - Fundamentals test

Write a C++ function that returns the largest of 3 integers.

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 254 times
Edit
-1
Community Evaluations
developer avatar
Obsolete
Dragon parfait
02/09/2024
No error here : https://onlinegdb.com/83niPB7ou
developer avatar
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
developer avatar
Dragon parfait
02/09/2024
I tried running code : https://onlinegdb.com/83niPB7ou And it doesn't throw a compilation error like the author was stating. The question might be obsolete.