Skip to content
Snippets Groups Projects
Commit 76882492 authored by JieunYoon's avatar JieunYoon
Browse files

Update README.md

parent 919d8325
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,13 @@
### Noun-Adjective Form
1. int const a
constant integer
```C
int const pi = 314;
int *a = π
int *const a; //이렇게 하면 변하지 않는다.
int *const a[] = π //배열일때
```
2. int const * a
(variable) pointer to a constant integer
3. int* const a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment