Search
 
SCRIPT & CODE EXAMPLE
 

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;
}
Comment

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;
}
Comment

PREVIOUS NEXT
Code Example
C :: generate n-bit gray code in c 
C :: pointer to a structure in c 
C :: clear screen c 
C :: What are the 3 basic types of Plate Boundaries? Explain their differences (how they act). 
C :: c check if file exists 
C :: conio.h linux 
C :: factorial c program using for loop 
C :: how to use gets after scanf 
C :: div en langage c 
C :: C hello workld 
C :: how to find all the missing dates and increment the series in r 
C :: data types in c 
C :: see if two strings are equal in C 
C :: arduino digital read 
C :: input in c 
C :: nested loop in c 
C :: arduino millis() 
C :: function for quicksort in c 
C :: write a binary file c 
C :: uuidv4 javascript 
C :: initialize array in c with 0 
C :: copy string in c 
C :: how to open a file with open in c 
C :: The fscanf and fprintf functions 
C :: responsive form bootstrap 4 
C :: c typedef 
C :: lichess puzzles 
C :: Leap year using function in c 
C :: Initialization of a 3d array in c 
C :: wifi access point in esp8266 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =