What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main() {
if (0) {
cout << "GEEKSFORGEEKS" ;
}
else
{
cout << "geeksforgeeks" ;
}
return 0;
}
GEEKSFORGEEKS
geeksforgeeks
Compilation Error
No Output
This question is part of this quiz :
C++ Flow Control