Testing for 3 way conditions in C -
Testing for 3 way conditions in C -
how test 3 way conditions in c?
for illustration (pseudo format):
if n , z , p { print nzp } else if (n , z) , not p { print nz } ...........
if (n && z) { if (p) print nzp else print nz }
c condition
Comments
Post a Comment