//WAP to display the static members of a class
#include<iostream.h>
#include<conio.h>
class date
{public:
int day;
int month;
int year;
};
void main()
{
clrscr();
class date d;
d.day=21;
d.month=1;
d.year=2013;
cout<<"Today's date = "<<d.day<<"/"<<d.month<<"/"<<d.year<<endl;
getch();
}
No comments:
Post a Comment
Note: only a member of this blog may post a comment.
No comments:
Post a Comment
Note: only a member of this blog may post a comment.