A Program That Read Mark & Display Pass Or Fail.

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

void main()
{
    int mark;
    clrscr();
    printf("Enter Mark = ");
    scanf("%d",&mark);

    printf("%s",(mark>=33)? "Pass":"Fail");
   
    getch();
}

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