Escape sequences:
printf("tab:\t:")
printf("newline:\n:")
printf("return:\r:")
printf("formfeed:\f:")
printf("backspace:\b:")
printf("alarm:\a:")
printf("escape:\e:")
printf("backslash:\\:")
printf("double quote:\":")

Numbers, strings and chars:
printf("%% \t a percent sign")
printf("%c \t a character with the given number", 50)
printf("%s \t a string", "This is a string, \"a very good string\"")
printf("%d \t a signed integer, in decimal", -3)
printf("%u \t an unsigned integer, in decimal", 3)
printf("%o \t an unsigned integer, in octal", 9)
printf("%x \t an unsigned integer, in hexadecimal", 17)
printf("%e \t a floating-point number, in scientific notation", 3.141)
printf("%f \t a floating-point number, in fixed decimal notation", 3.141)
printf("%g \t a floating-point number, in best notation", 3.141)
printf("decimal: %d, float: %f", 3.141, 4)
printf("decimal padded: %03d, float precision: %0.2f", 3.141, 4)

Case:
toupper(CoNvErT Me To UpPeR cAsE)
tolower(CoNvErT Me To LoWeR cAsE)
toupperfirst(coNvErT My FiRsT cHaR tO uPpPeR cAsE)
tolowerfirst(CoNvErT My FiRsT cHaR tO lOwEr CaSe)

Substing:
substr(test string, 2)
substr(test string, 0, 6)
substr(test string, 2, 6)

