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















