The class Date has a single constructor that accepts the integer value: a month- (1 for January through 12 for December), a day of the month (1-31), and a year (in that order). Given the Date variable datep, dynamically allocate a Date object with the initial value of March 12, 2006, and assign the resulting pointer to datep.
.
.
Click on the title for the solution
.
.
datep = new Date(3,12,2006);
.
Click on the title for the solution
.
.
This is the answer:
:
datep = new Date(3,12,2006);
Comments
Post a Comment