CPlusPlusThings/basic_content/const/const_num.cpp

9 lines
149 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;
}