Which of the following is the correct statement to declare a named unsigned integer constant named minimum and assign it the value of 15?
a) const unsigned int minimum = 15;
b) int constant minimum = 15;
c) #define minimum 15
d) unsigned constant int minimum = 15;