Medium
What does return the following code ?
int main() {
if 3 > 1 {
std::cout << "3 greater than 1" << std:endl;
} else {
std::cout << "3 is not greater than 1" << std:endl;
}
return 0;
}
Author: SamuelStatus: PublishedQuestion passed 22 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about C++