Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

C bold output

#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: #C #bold #output
ADD COMMENT
Topic
Name
1+3 =