/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
english/basic_content/const/const_num.cpp
8 строк
151 B
xliu79
english
18 июл 2020, 12:09
18 июл 2020, 12:09
31c5da6
Код
Авторство
О чём код?
#include<iostream> using namespace std; int main(){ const int b = 10; b = 0; //error const string s = "helloworld"; const int i,j=0; }