Does Microsoft C compiler allow variable sized arrays?

后端 未结 0 1163
花落未央
花落未央 2020-12-30 18:05
int function(const char *p)
{
    const int str_size = strlen(p);
    char parameter[str_size];
    ...
}

The above code compiled using Micr

相关标签:
回答
  • 消灭零回复
提交回复
热议问题