如何在C ++中定义常量?

您可以在C ++中定义常量,方法是在变量声明之前添加const限定符。 

示例

#include<iostream>
using namespace std;

int main() {
   const int x = 9;
   x = 0;
   return 0;
}

这将定义常量x。但是,当我们尝试重写常量的值时,它将引发错误。