1.

What is the difference between ++var and var++?

Answer»
++varvar++
This will FIRST INCREMENT the VALUE of the VARIABLE then PROCESS it.It will first process the variable then increment its value.


Discussion

No Comment Found