Answer Posted / varshil shah
A sequence point in imperative programming defines any point
in a computer program's execution at which it is guaranteed
that all side effects of previous evaluations will have been
performed, and no side effects from subsequent evaluations
have yet been performed. They are often mentioned in
reference to C and C++, because the result of some
expressions can depend on the order of evaluation of their
subexpressions. Adding one or more sequence points is one
method of ensuring a consistent result, because this
restricts the possible orders of evaluation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I round numbers?
When should a far pointer be used?
Why is c called c not d or e?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What are all different types of pointers in c?
how many errors in c explain deply
What is d scanf?
Write a program to swap two numbers without using third variable?
Explain how can you tell whether two strings are the same?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is the difference between near, far and huge pointers?
What is the use of the function in c?
If the size of int data type is two bytes, what is the range of signed int data type?
Can you please explain the difference between exit() and _exit() function?
Why cant I open a file by its explicit path?