9 lines
151 B
C++
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;
|
|
}
|