C++/Overload/Underflow
Overflow and Underflow
#include <iostream>
using namespace std;
int main(void)
{
short testScore;
testScore = 32768;
cout << "Your test score is " << testScore << "\n";
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
short testScore;
testScore = 32768;
cout << "Your test score is " << testScore << "\n";
return 0;
}