update dir

This commit is contained in:
light-city
2019-07-14 16:52:20 +08:00
commit 57627e0b75
30 changed files with 714 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,10 @@
#include<iostream>
using namespace std;
int main(){
const int p = 3;
const int * const ptr = &p;
cout<<*ptr<<endl;
}