The problem is that when i typed
printf("\033[1;32mHello World\033[0m");
it prints something like this
[1;32mHello World[0m
in the console. My code is
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main(){
printf("\033[1;32mHello World\033[0m");
_getch();
return 0;
}
it displays:
a box with a question mark inside->[1;32mHello World[0m
but should be a color green text color Hello World.