Quick Guide To C: Appendix A
Quick Guide To C: Appendix A
Quick Guide to C
/* Start of multiple line comment
Quick Quide to C (up to loops)
*/
// start of a single line comment
// if-else may be used with compound // if-else may be used with compound
conditions conditions
// Ex (1) : use AND logic operator && // Ex (2) : use OR logic operator ||
if (angle>0 && angle<180) if (angle<=0 || angle>=180)
{ {
} }
else else
{ {
} }