variadic_macro.c

Cエキスパート

Explorer

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
variadic_macro.c
Click to focus
1
2
3
4
5
6
7
#define DEBUG(fmt, ...) \
   fprintf(stderr, "[%s:%d] " fmt "\n", __FILE__, __LINE__, ##__VA_ARGS__)
#define MIN(a, b) ({ \
   typeof(a) _a = (a); \
   typeof(b) _b = (b); \
   _a < _b ? _a : _b; \
})
0WPM0%0:000/200(0%)|Ln 1, Col 1
UTF-8C

関連する練習問題