#include <stdio.h>

int main() {
    
    /*
    printf("Indique el valor de x:\n");
        scanf("%d",&x)
            */
int x=-4;
    if (x>=0){
            printf("Es positivo");
    }
    else{
                printf("Es negativo");
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: