Answers for "all format specifiers"

2

all format specifiers

%c				Character
%d				Signed integer
%e / %E			Scientific notation of floats
%f				Float values
%g / %G			Similar as %e or %E
%hi				Signed integer (short)
%hu				Unsigned Integer (short)
%i				Unsigned integer
%l / %ld / %li	Long
%lf				Double
%Lf				Long double
%lu				Unsigned int or unsigned long
%lli / %lld		Long long
%llu			Unsigned long long
%o				Octal representation
%p				Pointer
%s				String
%u				Unsigned int
%x / %X			Hexadecimal representation
%n				Prints nothing
%%				Prints % character
Posted by: Guest on April-27-2022

Code answers related to "all format specifiers"

Browse Popular Code Answers by Language