Horje
printf signed char Code Example
printf signed char
%c   --- char
%hh  --- signed char (synomous with char)
%hhu --- unsigned char
%h   --- short
%hu  --- unsigned short
%d   --- int
%u   --- unsigned int
%lu  --- unsigned long (including size_t, which is returned by sizeof())
printf char value
char ch = 'a';
printf("%d", ch);




C

Related
express.static public Code Example express.static public Code Example
c union in struct Code Example c union in struct Code Example
C printf to string Code Example C printf to string Code Example
bash convert find to array Code Example bash convert find to array Code Example
link list c Code Example link list c Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10