Technote87 [포인터] 다 똑같은 번지를 가리키는 예 #include using namespace std; int main() { int a = 50; int *p = &a; int** q = &p; cout 2009. 9. 9. [포인터] 포인터에 무엇이 저장되어 있는가? #include typedef unsigned short int USHORT; using namespace std; int main() { USHORT myAge; USHORT *pAge = 0; myAge = 5; cout 2009. 9. 9. [포인터] 변수의 주소를 보여줌 #include using namespace std; int main() { unsigned short shortVar = 5; unsigned long longVar=65535; long sVar = -65535; cout 2009. 9. 8. Data Structure week1 자료구조 1주차 실습 #include using namespace std; const int NUMSTUDENTS = 5; void printScore(int value) { cout 2009. 8. 26. 이전 1 ··· 8 9 10 11 12 13 14 ··· 22 다음