hi!
i want to print a colored 'A' using putchar, let's say green.
i am able to print * by doing just putchar('A');
but i don't know that how to print a colored 'A'.
i have also tried to write:
putchar('A',255);
and also
putchar('A',3);
but no success.