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
Tell me is null always defined as 0(zero)?
What is the use of static variable in c?
can we have joblib in a proc ?
Can I initialize unions?
What are header files and what are its uses in C programming?
number of times a digit is present in a number
What is extern keyword in c?
How pointer is different from array?
Explain the difference between the local variable and global variable in c?
What is the purpose of void pointer?
What does volatile do?
What is the purpose of type declarations?
What is the size of structure pointer in c?
What is main function in c?
What is the most efficient way to store flag values?