c/c++ assert的头文件

#include
#include
using namespace std;
int writestr(const char *p)
{     assert(0!=p);//如果p等于0,则报错误
      cout< }
int _tmain(int argc, _TCHAR* argv[])
{
     char *str="hello";
     writestr(str);

     cout<      system("pause");
     return 0;
}

你可能感兴趣的:(c++语言,c++,builder,c++,c语言,蓝桥杯)