A program that read mark & display pass or fail.

#include<stdio.h>
#include<conio.h>
#include<iostream.h>

void main()
{
    int m;
    clrscr();
    cout<<"Enter mark = ";
    cin>>m;
   
    if(m>=33)
       cout<<"Pass";
    else
       cout<<"Fail";

    getch();

}


///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........