在 C 中传递混合的 const 整数 ASCII 值和 const char 数组,并在没有事先声明的情况下传递 const int

passing mixed const integer ASCII values and const char array in C and passing const int without previous declaration

这个问题有两个部分。

1: 如果我想将一个 const int 数组传递给一个函数,通常我会这样做。

const int array[3] = {1,2,3};
somefunction(array,3);

但是我想用一种更简单的方式来做,就像你可以用字符串做的那样。

somefunction("abc",3);

对于somefunction({1,2,3},3);之类的东西,我知道这行不通,但是有没有语法正确的方法来做到这一点。

2:如果上一个问题是可能的,那么这个问题就得到了回答。有没有办法在 const 字符串中混合 ascii 值。喜欢... somefunction({1,2,3,"test"},7); 我知道这行不通,但有没有语法正确的方法来做到这一点。

回答你的第一个问题,我可以说你可以使用复合文字来做到这一点。例如

#include <stdio.h>

void f( const int a[], size_t n )
{
    for ( size_t i = 0; i < n; i++ )
    {
        printf( "%d ", a[i] );
    }
    putchar( '\n' );
}

int main(void) 
{
    f( ( int[] ) { 1, 2, 3 }, 3 );
}

但是您不能拥有包含不同类型元素的数组。

所以对于这样的构造 {1,2,3,"test"} 你需要将字符串文字拆分成单独的字符,例如 {1,2,3, 't', 'e', 's', 't'}