0
how to perform pre-inrement in long expression ?
a=5; b=++a + ++a + ++a; output: b=22; How ?
2 Réponses
+ 4
Its Compiler dependent on different Compiler of ide it will give different Output
+ 3
Include the language in question tags.
a=5; b=++a + ++a + ++a; output: b=22; How ?