函数-assert用法
程序员文章站
2024-02-23 14:15:46
...
assert()是C语言标准库中提供的一个通用预处理器宏在代码中常利用assert()来判断一个必需的前提条件以便程序能够正确执行
#include <iostream>
#include "assert.h"
int _tmain(int argc, _TCHAR* argv[])
{
int i = 0;
for (i=1; i<100; i++)
{
assert(i!=5); //stop when i = 5
std::cout<<i<<std::endl;
}
return 0;
}