Last Update 2012/07/05
論理否定を行います。
(例)
#include <stdio.h>
int main()
{
printf("0の論理否定 : %d\n", !0);
printf("1の論理否定 : %d\n", !1);
return 0;
}
実行結果
0の論理否定 : 1
1の論理否定 : 0
© loose-info.com All Rights Reserved.