CPlusPlusThings/basic_content/const/const_num.cpp
Light-City 8edbbbc5a2 update
2019-11-05 16:56:07 +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;
}