/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
english/basic_content/assert/ignore_assert.c
17 строк
233 B
zhangxing
support bazel complie this project and format code.
30 мар 2024, 17:00
30 мар 2024, 17:00
3c8a3f2
Код
Авторство
О чём код?
/** * @file ignore_assert.c * @brief Ignore assertion * @author Light-City * @version v1 * @date 2019-07-25 */ #define NDEBUG // ignore assertion #include<assert.h> int main(){ int x=7; assert(x==5); return 0; }