if else check'

#include <stdio.h>

int main() {
    int num = 10;

    if (num > 5) {
        printf("The number is greater than 5\n");
    } else {
        printf("The number is less than or equal to 5\n");
    }

    return 0;
}