重複の可能性:
C の const と C++ の const
次のコードがあります
Cで
int main()
{
const int k;//allowed but garbage and later we can't modify
printf("%d",k);
}
o/p=ゴミ
C++ の場合
int main()
{
const int k; //not allowed from here itself
printf("%d",k);
}
o/p-コンパイル時エラー
out なしで宣言するconst
場合、Cでの使用は何なのか疑問に思っていますが、その後はできません。allowed
initialization
declaration
initialize
しかし、なしでは値をc++
宣言できないのは良いことですか。const
initialization
後で変更できないため、変数を宣言するだけでは、変数の使用はありますかk
、C
それとも役に立ちません。