标签:判断 代码 clu null 之一 temp erro int inpu
char comChar=0,*aString,*bString,*endFirst=NULL,*endSecond=NULL,*tempString; //指针的内容为NULL
*aString=*bString=0;
if((!aString)+(!bString)) //aString和bString是指针地址 地址申请到了就不为0,故!地址为0,if后括号内的值为0,不执行 二者之一没有地址的话!地址就是1,if后括号内的值只要不为0就会执行,打出错误通知
{
printf("\nAlloc memory error!\n");
}
/* input and print to stdout */
新人可能会忘记if后的括号内的值不为0或1时执不执行 以下代码可以让我们记得只要不为0都会执行:
#include <iostream>
using namespace std;
int main()
{
if(-2)
{
printf("111");
}
}
标签:判断 代码 clu null 之一 temp erro int inpu
原文地址:https://www.cnblogs.com/zhjc/p/12237724.html