-
What is the output of this program?
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << numeric_limits<short int> :: max() << endl;
}
-
- 767
- 327
- 32767
- Compilation Error
- None of these
Correct Option: C
In this program, We are finding the max range for short int by using max function.