Skip to content
dimfrom42 edited this page Jun 7, 2022 · 15 revisions

C++

42seoul cpp 과제 규칙

  • compile flag : -Wall -Werror -Wextra -std=c++98 => 함수나 자료형 사용시 cplusplus.com과 cppreference.com에서 버전 확인 후 사용함
  • using standard library is allowed
  • no external library
  • no *printf. *alloc(), free()
  • using namespace and friend is forbidden
  • STL is only allowed in CPP08
  • from CPP02 to CPP08, the classes must be designed in the Orthodox Canonical Form
  • function implementation put in a header file is not allowed

자세한 설명과 풀이는 아래 링크나 오른쪽 사이드 바를 이용해서 원하는 페이지에서 참고

CPP00

CPP01

CPP02

CPP03

CPP04

CPP05

CPP06

CPP07

CPP08

Clone this wiki locally