本文介绍了OR语句不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试向此if语句中添加第二个实例,或者似乎没有这样做.
I''m trying to add a second instance to this if statement and or doesn''t seem to do it.
if (ip_header->source_ip == *addressValue or ip_header->source_ip == addr)
{
printf("\n Source IP: %s", "0.0.0.0");
printf("\n Destination IP: %s", ipDest);
}
else
{
printf("\n Source IP: %s", ipSrc);
printf("\n Destination IP: %s", ipDest);
推荐答案
if (ip_header->source_ip == *addressValue || addr)
这篇关于OR语句不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!