C++์ ํฌ์ธํฐ๋ Assignment Expressions (๋์
ํํ์) Arithmetic Expressions (์ฐ์ ํํ์) Comparison Expressions (๋น๊ต ํํ์) ์์ ์ฌ์ฉ์ด ๊ฐ๋ฅํฉ๋๋ค. ํฌ์ธํฐ์ ๋ํ ๋ค์ํ ์ฐ์ฐ(์ฐ์ )์ด ๊ฐ๋ฅํฉ๋๋ค. ๋ค์์ ํฌ์ธํฐ์ ์ ์ฉ ๊ฐ๋ฅํ ๋ช๊ฐ์ง ์ฐ์ฐ๋ค์
๋๋ค. (++) ํฌ์ธํฐ์ ๊ฐ์ ์ฆ๊ฐ์์ผ ๋ฐฐ์ด์ ๋ค์ ์์๋ฅผ ๊ฐ๋ฅดํค๋๋ก ํฉ๋๋ค. int_ptr++; (--) ํฌ์ธํฐ์ ๊ฐ์ ๊ฐ์์์ผ ๋ฐฐ์ด์ ์ด์ ์์๋ฅผ ๊ฐ๋ฅดํค๋๋ก ํฉ๋๋ค. int_ptr--; (+) ํฌ์ธํฐ์ ๊ฐ์ n * sizeof(type) ๋งํผ ์ฆ๊ฐ์ํต๋๋ค. int_ptr += n; or int_ptr = int_ptr + n; (-) ํฌ์ธํฐ์ ๊ฐ์ n * sizeof(type) ๋งํผ ๊ฐ์์ํต๋๋ค. i..