c colour text

#include <stdio.h>

int main() {
    printf("\033[0;31mThis text is red\033[0m\n");
    return 0;
}