From 768824926978b97e9c73bbf28697f3f21cdf9f57 Mon Sep 17 00:00:00 2001
From: Jieun <yjeka@ajou.ac.kr>
Date: Thu, 13 Aug 2020 01:05:44 +0900
Subject: [PATCH] Update README.md

---
 pointer/README.md | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pointer/README.md b/pointer/README.md
index 5542e10..497e95d 100644
--- a/pointer/README.md
+++ b/pointer/README.md
@@ -53,6 +53,13 @@
 ### Noun-Adjective Form
 1. int const a  
    constant integer
+   ```C
+   int const pi = 314;
+   int *a = &pi;
+
+   int *const a; //이렇게 하면 변하지 않는다.
+   int *const a[] = &pi; //배열일때
+   ```
 2. int const * a  
    (variable) pointer to a constant integer
 3. int* const a  
-- 
GitLab