Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

c bold text

#include <stdio.h>

#define RESET "x1B[0m"
#define BOLD "x1B[1m"      //Bold Text Formula...

int main(){
    printf("
This is a normal text.");
    printf("
%sThis is a BOLD text.%s",BOLD,RESET);
    printf("
This is a normal text.");
    return 0;
}
 
PREVIOUS NEXT
Tagged: #bold #text
ADD COMMENT
Topic
Name
9+9 =