Untitled

Anonymous
plain_text
07/27/2023 7:01 AM
284 B
20
Indexable
#include <stdio.h>

int main() {
    int marks;

    printf("Enter your marks: ");
    scanf("%d", &marks);

    marks == 81 ? printf("Good") : (marks == 91 ? printf("Excellent") : printf(""));

    return 0;
}
Editor is loading...