english
This commit is contained in:
BIN
english/basic_content/const/funciton_const/condition3/condition1
Executable file
BIN
english/basic_content/const/funciton_const/condition3/condition1
Executable file
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
#include<iostream>
|
||||
using namespace std;
|
||||
|
||||
int main(){
|
||||
|
||||
const int p = 3;
|
||||
const int * const ptr = &p;
|
||||
cout<<*ptr<<endl;
|
||||
|
||||
}
|
Reference in New Issue
Block a user