전역범위와 지역범위 - 전역범위: 전역범위에서 정의된 변수는 프로그램 어디서나 액세스 할 수 있다. - 지역범위: 함수에서 정의된 변수는 함수 내에서만 액세스 할 수 있다. #include void enter_code(int passcode) { if (passcode == 0310) { std::string secret_knowledge = "https://content.codecademy.com/courses/regex/onyourexcitingjourneylearningtocodeyouwillfindthis.gif"; std::cout