Answer Posted / abdur rab
The answer from wikipedia
Sequence point comes into play when the same variable is
modified more than once. An often-cited example is the
expression i=i++, which both assigns i to itself and
increments i; what is the final value of i? Language
definitions might specify one of the possible behaviors or
simply say the behavior is undefined. In C and C++,
evaluating such an expression yields undefined behavior.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What are the types of macro formats?
What is hashing in c language?
What is n in c?
What is extern keyword in c?
How can I write functions that take a variable number of arguments?
Which type of language is c?
Why doesn't C support function overloading?
What is the scope of global variable in c?
What are the different types of data structures in c?
How do shell structures work?
What is volatile variable in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is #include stdlib h?
Why does this code crash?
What is the sizeof () a pointer?