블로그 이미지
송시혁

calendar

1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

Notice

Tag

Recent Post

Recent Comment

Recent Trackback

Archive

1. const int *p1= &A;


2. int const  *p2= &A;


3. int *const p3= &A;


4. const int * const p4= &A;


5. const int const *p5= &A;


6. int const * const *p6= &A;




5번이 에러


posted by 송시혁