프로그래밍/C++ 썸네일형 리스트형 [C++] 열거체(Enumeration)의 간단한 예제 코드 #include using namespace std; enum Color { Red, Green, Blue }; int main() { Color myColor; myColor = Red; cout 더보기 [C++] 구조체(Struct)를 이용한 데이터 입력 및 출력 코드 #include #include using namespace std; struct Employee { int id; char name[10]; int salary; }; int main() { Employee s1[3]; for (int i = 0; i 더보기 [C++] 구조체(Struct)를 이용한 데이터 출력 코드 #include #include using namespace std; struct StudentInfo { char name[10]; // 10 int stdNumber; // 4 float grades[2]; // 4 * 2 = 8 }; int main() { StudentInfo s1; //22 cout 더보기 [C++] 포인터 값 확인 하기 코드 #include # define SIZE 5 // mainifest constant using namespace std; int main() { int a = 123; int* p = NULL; p = &a; if (p != NULL) { cout 더보기 이전 1 2 다음