how to chage text color in c urban piguin

Solutions on MaxInterview for how to chage text color in c urban piguin by the best coders in the world

showing results for - "how to chage text color in c urban piguin"
Cameron
22 Jul 2018
1Red \033[0;31m
Alexander
02 Sep 2018
1#include <stdio.h>
2void red () {
3  printf("\033[1;31m");
4}
5
6void yellow {
7  printf("\033[1;33m");
8}
9
10void reset () {
11  printf("\033[0m");
12}
13
14int main () {
15  red();
16  printf("Hello ");
17  yellow();
18  printf("world\n");
19  reset();
20  return 0;
21}
Iris
03 Jan 2021
1Black \033[0;30m
Ariadna
10 Jan 2021
1Cyan \033[0;36m
Isabelle
31 Feb 2016
1Blue \033[0;34m
Briony
22 Apr 2017
1Cor Texto C
Isabel
30 Aug 2018
1White \033[0;37m
Emilie
10 Feb 2019
1Purple \033[0;35m
Lukas
06 Mar 2019
1Yellow \033[0;33m
Mason
14 Jan 2018
1Green \033[0;32m