#include<iostream.h>
	#include<string.h>
	class Student
	{
	int Roll;
	char Name[25];
	float Marks;
	public:
	Student()//Default Constructor
	{
	Roll = 1;
	strcpy(Name,"Kumar");
	Marks = 78.42;
	}
	void Display()
	{
	cout<<"\n\tRoll : "<<Roll;
	cout<<"\n\tName : "<<Name;
	cout<<"\n\tMarks : "<<Marks;
	}
	};
	void main()
	{
	Student S;//Creating Object
	S.Display();//Displaying Student Details
	}