数组--C语言中关于数组的小问题

1、记得最初学C语言时,关于数组有这么一点:定义数组时,其长度不能用变量来表示。

但是今天一不小心写错了:char buf[len],居然编译通过,运行正确!

简单的测试程序,array_init.c如下:

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]){
    int len = argc > 1 ? atoi(argv[1]) : 0;
    char buf[len+1];

    printf("buf length is : %d\n", (int)sizeof(buf));

    printf("please input string:\n");
    //scanf("%s", buf);
    fgets(buf, len, stdin);
    printf("the input string is : %s\n", buf);

    return 0;
}

执行时,

$./a.out 10
buf length is : 11
please input string:
abcdefghjklmn
the input string is : abcdefghj

网上查了一下,有人说是C89不支持 数组长度用变量,而C99支持。

参考:https://gcc.gnu.org/onlinedocs/gcc/Variable-Length.html


2、但是,这里还有一个问题

若将代码稍微改动一下,在声明数组时初始化

char buf[len + 1] = {"abcdefg"};
这时候,编译报错:

error: variable-sized object may not be initialized


3、此时,再将源文件的后缀名 改为 .cpp,即为array_init.cpp,

#include <stdio.h>
#include <cstdlib>

int main(int argc, char *argv[]){
    int len = argc > 1 ? atoi(argv[1]) : 0;
    char buf[10+1] = {"abcdef"};

    printf("buf length is : %d\n", (int)sizeof(buf));
    printf("please input string:\n");
    
    fgets(buf, len, stdin);
    printf("the input string is : %s\n", buf);

    return 0;
}
这时编译通过,运行正确


其中原因还没有搞清楚,待日后再仔细琢磨

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值