C Bold Text

[Solved] C Bold Text | C - Code Explorer | yomemimo.com
Question : c bold text

Answered by : andreas-leonidou

#include <stdio.h>
#define RESET "\x1B[0m"
#define BOLD "\x1B[1m" //Bold Text Formula...
int main(){ printf("\nThis is a normal text."); printf("\n%sThis is a BOLD text.%s",BOLD,RESET); printf("\nThis is a normal text."); return 0;
}

Source : | Last Update : Wed, 18 May 22

Answers related to c bold text

Code Explorer Popular Question For C