码迷,mamicode.com
首页 > 其他好文 > 详细

sizeof&&strlen

时间:2021-05-24 13:30:12      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:int   std   body   数组   指定   ble   table   字符   整型   

C语言(sizeof&&strlen)

sizeof(单目运算符):计算变量或变量类型占的字节数

  • sizeof求数组长度:sizeof(arr)/sizeof(arr[0])
变量类型 字节数
短整型 2
整形 4
长整型 4
单精度浮点型 4
双精度浮点型 8
字符类型 1
指针 4或8
示例:
#include<stdio.h>
int main()
{
	printf("%d\n", sizeof(char));
	printf("%d\n", sizeof(short));
	printf("%d\n", sizeof(int));
	printf("%d\n", sizeof(long));
	printf("%d\n", sizeof(float));
	printf("%d\n", sizeof(double));

}

示例结果:1 2 4 4 4 8

strlen(函数):计算指定字符串 str 的长度,但不包括结束字符(即 null 字符(’\0‘))

strlen函数在头文件#include<string.h>中

示例:
#include<stdio.h>
#include<string.h>
int main()
{
	char arr[] = "asfdgng";
	printf("%d\n",strlen(arr));

示例结果:7

sizeof&&strlen

标签:int   std   body   数组   指定   ble   table   字符   整型   

原文地址:https://www.cnblogs.com/jiabaolu/p/14775648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!