Within the C programming language, you need to use the printf() operate to print textual content and variables to the console. The printf() operate takes a format string as its first argument, which specifies how the output must be formatted. The format string can include placeholders for variables, that are represented by % characters adopted by a kind specifier. For instance, the next code prints the worth of the variable ‘x’ as an integer:
printf(“The worth of x is %dn”, x);
You can too use the printf() operate to print variables in shade. To do that, that you must use the %c escape sequence, adopted by a shade code. The next desk lists the colour codes that you need to use:
Shade | Code |
---|---|
Black | 33[0m |
Purple | 33[31m |
Inexperienced | 33[32m |
Yellow | 33[33m |
Blue | 33[34m |
Magenta | 33[35m |
Cyan | 33[36m |
White | 33[37m |
For instance, the next code prints the worth of the variable ‘x’ in crimson:
printf(“