CPlusPlusThings/basic_content/const/const_function.cpp
Light-City 8edbbbc5a2 update
2019-11-05 16:56:07 +08:00

12 lines
170 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include<iostream>
using namespace std;
void f(const int i){
i=10; // error: assignment of read-only parameter i
cout<<i<<endl;
}
int main(){
f(1);
}