With this code :
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
const char *const green = "\033[0;40;32m";
const char *const normal = "\033[0m";
int i;
fprintf(stderr,"%shello %sWorld\n",green,normal)
}
When I compile, I get this :
http://mhtrinh.free.fr/snapshot.jpeg