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));