return (1) 썸네일형 리스트형 Return (프로그래밍에서의 리턴) return이란? 함수의 결과값을 함수를 호출한 곳에 다시 가져다가 (리턴 주소에) 저장해주는 명령어 In programming, return is a statement that instructs a program to leave the subroutine and go back to the return address. The return address is located where the subroutine was called. return은 프로그램에게 서브루틴(함수)를 떠나 ‘리턴 주소’로 돌아가도록 지시하는 선언문이다. return은 서브루틴(함수) 내에 있는 명령코드를 모두 사용하고 리턴 주소(return address)로 값을 보내주는 것입니다. 리턴 주소(return address)는 메모리 .. 이전 1 다음