必威体育Betway必威体育官网
当前位置:首页 > IT技术

C 语言printf打印各种数据类型的方法(u8/s8/u16/s16.../u64/double/float)(全)

时间:2019-06-04 13:42:06来源:IT技术作者:seo实验室小编阅读:110次「手机版」
 

u64

首先必须知道u8,s8等数据类型的定义:

typedef signed char s8;  
typedef unsigned char u8;  
  
typedef signed short s16;  
typedef unsigned short u16;  
  
typedef signed int s32;  
typedef unsigned int u32;  
  
typedef signed long long s64;  
typedef unsigned long long u64;  

与体系结构相关的,定义在include/linux/type.h文件中:

/* bsd */
typedef unsigned char		u_char;
typedef unsigned short		u_short;
typedef unsigned int		u_int;
typedef unsigned long		u_long;

/* sysv */
typedef unsigned char		unchar;
typedef unsigned short		ushort;
typedef unsigned int		uint;
typedef unsigned long		ulong;

#ifndef __BIT_types_defined__
#define __BIT_TYPES_DEFINED__

typedef		__u8		u_int8_t;
typedef		__s8		int8_t;
typedef		__u16		u_int16_t;
typedef		__s16		int16_t;
typedef		__u32		u_int32_t;
typedef		__s32		int32_t;

#endif /* !(__BIT_TYPES_DEFINED__) */

typedef		__u8		uint8_t;
typedef		__u16		uint16_t;
typedef		__u32		uint32_t;

#if defined(__GNUC__)
typedef		__u64		uint64_t;
typedef		__u64		u_int64_t;
typedef		__s64		int64_t;

对于各种数据类型的打印方式总结如下如下:

数据类型 打印格式
u8 %d
s8 %d
u16 %d or %hu
s16 %d or %hd
u32 %u
s32 %d
u64 %llu
s64 %lld
int %d
unsigned int %u
short int %d or %hd
long %ld
unsigned long %lu
long long %lld
unsigned long long %llu
char %c
char * %s
bool (#define stdbool.h) %d
unsigned int/int------>十六进制 %0x
unsigned long/long---->十六进制 %0lx
long long/unsigned long long ----->十六进制 %0llx
unsigned int/int------>八进制 %0o
unsigned long/long---->八进制 %0lo
long long/unsigned long long ----->八进制 %0llo
float %f
double %f or %lf
科学技术类型(必须转化为double类型) %e
限制输出字段宽度 %x.yf (x:整数长度,y:小数点长度)

待解问题,在linux kernel里面也有使用bool来定义变量,查看code,定义如下:

typedef _Bool           bool;  

但是并没有真正找到具体定义在何处,待解。下面是stdbool.h的source code:


#define _STDBOOL_H

#ifndef __cplusplus

#define bool	_Bool
#define true	1
#define false	0

#else /* __cplusplus */

/* Supporting _Bool in C++ is a GCC extension.  */
#define _Bool	bool

#if __cplusplus < 201103L
/* Defining these macros in C++98 is a GCC extension.  */
#define bool	bool
#define false	false
#define true	true
#endif

#endif /* __cplusplus */

/* signal that all the definitions are present.  */
#define __bool_true_false_are_defined	1

#endif	/* stdbool.h */

也大致解释了linux kernel bool type了。

相关阅读

提升网站权重的方法

 大家都知道网站收录对权重的意义非常大,权重高的网站收录一定不会太低,那么你是否了解过其中的原理呢?那么更好的优化网站呢?下面

网站优化有哪些方法和步骤

 优化站点的步骤是什么?关于如何优化站点的想法。SEO优化的优化分为三类:一次性优化、重复性优化和每日数据监控。这是你需要做

SEO优化有稳定的方法吗?

 当做了一段时间的网站优化后,网站总体关键词或多或少都会有一些排名,这个时候要做的就是让网站排名稳定下来。再去优化其他方面的

网站需求的分析和解决方法

  一个网站是为了获得商业价值,而获得价值就需要目标用户访问,想要让目标用户访问网站,做好网站用户需求分析势在必行。一个没有

提升网站用户体验的方法有哪些?

  网站做的好不好主要还是要看大部分用户是否愿意使用以及操作是否符合用户习惯。无论多么精美的网站,缺少了用户的支持,那么网

分享到:

栏目导航

推荐阅读

热门阅读