What is the value of the following?

for a = 0, b=3, c=4

a>b && c

a && b

a & b

a || b

a | b

a && b || c++

a && b && c++

what is the value for c after executing the last two expressions? Write a program to verify your answers. Write several sentences to explain why.