#include <iostream>
using namespace std; 

int main() {
    class student 
{
    int rollno; 
    char name[30];
    int mark [4],total;
    float avg; 
    public:
    void getdata ();
    void calc ();
    void grade ();
};
return 0;
}

Embed on website

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