#include <iostream>
using namespace std;
class internal
{
  public:
    int c_quiz,c_assign,c_exam;
    int c,dtp;
    char name[30];
    void c++()
    {
        cout<<"\n Enter the Student Name : ";
        cin>>name;
        cout<<"\n Enter the C++ Quiz mark : ";
        cin>>c_quiz;
        cout<<"\n Enter the C++ Assignment Mark : ";
        cin>>c_assign;
        cout<<"\n Enter the C++ Internal Exam Mark : ";
        cin>>c_exam;
    }
};

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: