The
int
value returned by
main()
, if any, is the program’s return value to
‘‘the system.’’ If no value is returned, the system will receive a value indicating successful comple-
tion. A nonzero value from
main()
indicates failure
The
int
value returned by
main()
, if any, is the program’s return value to
‘‘the system.’’ If no value is returned, the system will receive a value indicating successful comple-
tion. A nonzero value from
main()
indicates failure
The
int
value returned by
main()
, if any, is the program’s return value to
‘‘the system.’’ If no value is returned, the system will receive a value indicating successful comple-
tion. A nonzero value from
main()
indicates failure

The int value returned by main(), if any, is the program’s return value to‘‘the system.’’  If no value is returned, the system will receive a value indicating successful comple-tion.  A  nonzero value from main() indicates failure


어떤 리턴 값 도 받지 않았다면 . 성공적으로 실행 된 거고


0이 아닌 어떤 값이라도 리턴 됬다면 실행은 실패한 것


이렇게 해석 하는 게 맞는 거임?