C++ 썸네일형 리스트형 [C++] 객체 생성과 사용 예제 코드 #include #include using namespace std; class Point { public: Point(); int x, y; void print() { cout 더보기 [C++] String 문자 비교 및 Substr 예제 코드 # include # include using namespace std; int main() { string s1; cout 더보기 [C++] Heap에 할당 한 리버스(Reverse) 구현 코드 #include #include using namespace std; char* ReverseString(const char* src) { //char reverse[100]; // 더보기 [C++] 오버로딩(Overloading) 결과 출력 코드 #include using namespace std; int Add(int a, int b) { return a + b; } double Add(int a, double b) { return a + b; } int main() { int r = Add(10, 20); cout 더보기 [C++] 배열의 최대값, 문자열 길이 구하기 코드 #include using namespace std; int GetLength(char* c) { cout 더보기 [C++] 레퍼런스(Reference)로 데이터 접근 예제 코드 #include using namespace std; void Divide(int, int, int&, int&); int main() { int a, b, c, d; cout 더보기 [C++] Reference 및 포인터(Pointer)로 데이터 값 교환(Swap)하기 코드 #include using namespace std; void Swap(int*, int*); void Swap2(int&, int&); int main() { int a = 5, b = 10; cout 더보기 [C++] 함수를 이용한 Factorial 예제 코드 #include using namespace std; int Factorial(int); // Prototype 함수원형 int main() { int Value; cout Value; int result = Factorial(Value); cout 더보기 이전 1 2 다음