Can you help rectify two errors in the following program:
1. Statement missing ;
2. Declaration terminated incorrectly

Code:
#include<iostream.h>
#include<stdio.h>
#include<conio.h>
class student
{
 int rollno;
 char name[25];
 char grade;
 float marks;
 public: void readstudent()

 {
  cout<<"Enter the rollno.:";
...