Monday, August 8, 2011

Chapter 3, question 5

5.  Show two methods for defining a symbolic constant named MAXIMUM that has a value of 100.

#define MAXIMUM 100
const int MAXIMUM = 100;

No comments:

Post a Comment