print text colour c 2b 2b

Solutions on MaxInterview for print text colour c 2b 2b by the best coders in the world

showing results for - "print text colour c 2b 2b"
Stefano
15 Jan 2017
1#include <stdio.h>
2
3
4
5// [0;31m	Red
6// [1;31m	Bold Red
7// [0;32m	Green
8// [1;32m	Bold Green
9// [0;33m	Yellow
10// [01;33m	Bold Yellow
11// [0;34m	Blue
12// [1;34m	Bold Blue
13// [0;35m	Magenta
14// [1;35m	Bold Magenta
15// [0;36m	Cyan
16// [1;36m	Bold Cyan
17// [0m	Reset
18
19
20
21
22int main () {
23  printf("\033[1;31m");
24  printf("Hello world\n");
25  printf("\033[0m;")
26  return 0;
27}
28