signal_handler.c

C전문가

탐색기

C
초급10
중급10
고급10
전문가5
function_table.c
linked_list.c
bit_field.c
variadic_macro.c
signal_handler.c
마스터5
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python40
R40
Ruby40
Rust40
Shell40
Swift40
TypeScript40
signal_handler.c
Click to focus
1
2
3
4
5
6
7
volatile sig_atomic_t flag = 0;
void handler(int sig) {
   flag = 1;
   signal(sig, handler);
}
signal(SIGINT, handler);
while (!flag) { process(); }
0WPM0%0:000/149(0%)|Ln 1, Col 1
UTF-8C

관련 연습 문제