CPlusPlusThings/english/basic_content/const/const_num.cpp
2020-07-18 17:09:29 +08:00

9 lines
151 B
C++

#include<iostream>
using namespace std;
int main(){
const int b = 10;
b = 0; //error
const string s = "helloworld";
const int i,j=0;
}