関数から取得する値を静的変数に割り当てる必要があります。私は次のことを試みましたが、イニシャライザ要素が定数ではありません。
int countValue()
{
return 5;
}
void MatrixZero()
{
static int count=countValue();
count++;
printf("count value %d \n",count);
}
int main()
{
MatrixZero();
return 0;
}