/******************************************************************************
Welcome to code of Lập trình - Điện tử
Series: C
Author: Nghĩa Taarabt
*******************************************************************************/
#include <stdio.h>
#define ERROR 1
#define NO_ERROR 0
int main() {
int status = ERROR;
if (status == ERROR) {
printf("Critical error detected\n");
goto error_handler;
}
printf("Normal operation\n");
error_handler:
printf("Handling error...\n");
return 0;
}