배열
int array[3][3] = {1,2,3,4,5,6,7,8,9}; int array[3][3] = {{1,2,3}, {4,5,6}, {7,8,9}};
\0
Null
포인터
int *ptr;
*변수명
포인터 변수명++;