Can you find the output of below program?
# include <iostream>
# include <limits>
using namespace std;
int main ()
{
cout << boolalpha;
cout << numeric_limits<int> :: has_infinity << '\n';
return ();
}
a) 53234 b) False c) True d) None of the mentioned
















