Trả về 0 trong hàm chính có nghĩa là chương trình đã thực thi thành công (return 0 in the main function means that the program executed successfully).
Trả về 1 trong hàm chính có nghĩa là chương trình không thực thi thành công và có một số lỗi
(return 1 in the main function means that the program does not execute successfully and there is some error).
Trong hàm do người dùng tự định nghĩa (In the user-defined function)
Trả về 0 có nghĩa là hàm do người dùng tự định nghĩa đang trả giá trị về false (return 0 means that the user-defined function is returning false).
Trả về 1 có nghĩa là hàm do người dùng tự định nghĩa đang trả giá trị về true (return 1 means that the user-defined function is returning true).