c中的一些变量大小

[root@localhost smb1]# cat main.c 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void func(char str[100])
{

        printf("func:%d\n",sizeof(str));
}
int main(int arc, char ** argv)
{

        char str[]="hello";
        char *p=str;
        int n = 10;
        char test[100]="xxxxyyyy11112222";


        func(test);
        printf("main,*p:%d\n",sizeof(p));
        printf("main,n:%d\n",sizeof(n));
        printf("main,sizeof:%d\n",sizeof(str));
        printf("main,strlen:%d\n",strlen(str));

        return 0;
}

[root@localhost smb1]# gcc -o main main.c
[root@localhost smb1]# ./main 
func:8
main,*p:8
main,n:4
main,sizeof:6
main,strlen:5
[root@localhost smb1]# uname -a
Linux localhost.localdomain 4.3.0-rc1+ #2 SMP Sat Feb 13 21:55:55 CST 2016 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost smb1]# 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值