Thursday, 14 February 2013

Postfix/Prefix ++ and --


Require variable as their operands
Postfix ++ (or --): First the value of variable is used in the operation and then increment/decrement is performed
Prefix ++ (or --):  First the value of variable is incremented/decremented then new value is used

No comments:

Post a Comment

String functions

Read This: strncpy() strncat() strstr () strlen() — Predefined function defined in string.h . — — Returns the len...