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 you define a string?
What are the different types of control structures in programming?
What is the difference between printf and scanf in c?
What are the rules for identifiers in c?
What is a program flowchart and how does it help in writing a program?
What is abstract data structure in c?
What should malloc(0) do?
What oops means?
What is conio h in c?
How #define works?
regarding pointers concept
What is a lvalue
Do you know pointer in c?
Do string constants represent numerical values?
What is boolean in c?