INCREMENT & DECREMENT OPERATORS

INCREMENT OPERATORS It is used to incrementing the value 1. It have two types. Pre-Increment Operator Post-Increment Operator Pre-Increment Operator: Ex: ++a Before the variable, ++ is placed. Value is incremented first & then result is computed (Processed/Printed). Post-Increment Operator: Ex: a++ After the variable, ++ is placed. Value is computed first & then valueContinue reading “INCREMENT & DECREMENT OPERATORS”

Design a site like this with WordPress.com
Get started