#include int main() { std::cout iostream : Input Output stream ~= stdio std : 이름 공간(namespace) :: 표준 라이브러리의 (iostream) 모든 함수, 객체 등 정의 나만의 namespace 를 만들자 "header1.h"namespace header1 {int foo();void bar();} header1 namespace 에는 함수2개 정의#include "header1.h"#include "header2.h"namespace header1 {int func() { foo(); // 알아서 header1::foo() 가 실행된다. header2::foo(); // header2::foo() 가..