C Program that print the remark after entering your score - 6 Players blogs for technology

give us your feedback

People Online

Breaking

ads

Post Top Ad

Wednesday, June 12, 2019

C Program that print the remark after entering your score

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a;
    printf("\n\t enter your score");
    scanf("%d",&a);
    if (a>=45 && a<=100){
        printf("\n\t\ Pass");

    }else
    printf("\n\t fail");

    return 0;
}

No comments:

Post a Comment

ads1

Post Top Ad