
Patrick B. answered 03/20/20
Math and computer tutor/teacher
#include <stdio.h>
int main()
{
if (-1 * -2 == 14 % 4) // 2 == 2 is true
{
printf(" true \n");
}
else
{
printf(" false \n");
}
int x=6;
if ( -3 < 5 || !(x % 3 == 0)) // true or !( 0==0)
{ // true or !true
printf(" true "); // true or false
} // true
else
{
printf(" false");
}
}