From fb47f60a0dde06e110ae0012d8abd05cf9e10797 Mon Sep 17 00:00:00 2001 From: huihut Date: Sat, 24 Mar 2018 19:00:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9assert()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9691ea5..a42e3da 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ inline int functionName(int first, int secend,...) {/****/}; ### assert() -断言,是宏,而非函数。assert宏的原型定义在``中,其作用是如果它的条件返回错误,则终止程序执行。 +断言,是宏,而非函数。assert宏的原型定义在``(C)、``(C++)中,其作用是如果它的条件返回错误,则终止程序执行。 如