[{"createTime":1735734952000,"id":1,"img":"hwy_ms_500_252.jpeg","link":"https://activity.huaweicloud.com/cps.html?fromacct=261f35b6-af54-4511-a2ca-910fa15905d1&utm_source=V1g3MDY4NTY=&utm_medium=cps&utm_campaign=201905","name":"华为云秒杀","status":9,"txt":"华为云38元秒杀","type":1,"updateTime":1735747411000,"userId":3},{"createTime":1736173885000,"id":2,"img":"txy_480_300.png","link":"https://cloud.tencent.com/act/cps/redirect?redirect=1077&cps_key=edb15096bfff75effaaa8c8bb66138bd&from=console","name":"腾讯云秒杀","status":9,"txt":"腾讯云限量秒杀","type":1,"updateTime":1736173885000,"userId":3},{"createTime":1736177492000,"id":3,"img":"aly_251_140.png","link":"https://www.aliyun.com/minisite/goods?userCode=pwp8kmv3","memo":"","name":"阿里云","status":9,"txt":"阿里云2折起","type":1,"updateTime":1736177492000,"userId":3},{"createTime":1735660800000,"id":4,"img":"vultr_560_300.png","link":"https://www.vultr.com/?ref=9603742-8H","name":"Vultr","status":9,"txt":"Vultr送$100","type":1,"updateTime":1735660800000,"userId":3},{"createTime":1735660800000,"id":5,"img":"jdy_663_320.jpg","link":"https://3.cn/2ay1-e5t","name":"京东云","status":9,"txt":"京东云特惠专区","type":1,"updateTime":1735660800000,"userId":3},{"createTime":1735660800000,"id":6,"img":"new_ads.png","link":"https://www.iodraw.com/ads","name":"发布广告","status":9,"txt":"发布广告","type":1,"updateTime":1735660800000,"userId":3},{"createTime":1735660800000,"id":7,"img":"yun_910_50.png","link":"https://activity.huaweicloud.com/discount_area_v5/index.html?fromacct=261f35b6-af54-4511-a2ca-910fa15905d1&utm_source=aXhpYW95YW5nOA===&utm_medium=cps&utm_campaign=201905","name":"底部","status":9,"txt":"高性能云服务器2折起","type":2,"updateTime":1735660800000,"userId":3}]
C The basic data types of language are 9 species : plastic int, Long plastic long, Short short, character char, Solid type : Monosperm type (float type ), Double precision (double),void, Signed signed, Unsigned unsigned.
stay 32 Bit compiler , The bytes occupied by each data type are as follows :
printf("int occupy %d Bytes \n", sizeof(int)); printf("float occupy %d Bytes \n", sizeof(float));
printf("double occupy %d Bytes \n", sizeof(double)); printf("char occupy %d Bytes \n", sizeof(char));
printf("long occupy %d Bytes \n", sizeof(long)); printf("short occupy %d Bytes \n", sizeof(short));
The output results are as follows :
int occupy 4 Bytes float occupy 4 Bytes double occupy 8 Bytes char occupy 1 Bytes long occupy 4 Bytes short occupy 2 Bytes
The output form of each data type is as follows :
int a = 1; float b = 1.0; double c = 1.0; char ch = 'A'; long d = 1; printf("a
= %d,b = %f,c = %lf,ch = %c,d = %ld", a, b, c, ch, d);
in addition ,float,double retain n Decimal representation :%.nf,%.nlf.
also %md:m Refers to the minimum width of positioning output data . If the number of data bits is less than m, This fills the left end with space , If greater than or equal to m, Then output by actual digits , At this time, it can be matched with the modifier “-” and “0” To control , as follows :
int a = 1234; printf("%d\n", a); printf("%3d\n", a); printf("%8d\n", a);
printf("%08d\n", a); printf("%-8d\n", a);
The output results are as follows :
1234 1234 1234 00001234 1234
Observe the differences and characteristics carefully .
This is the end of the introduction here !!!