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
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What is break in c?
Differentiate between #include<...> and #include '...'
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What are the 4 types of programming language?
Write a simple code fragment that will check if a number is positive or negative.
How many levels deep can include files be nested?
How can I find out if there are characters available for reading?
How can I read/write structures from/to data files?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is pre-emptive data structure and explain it with example?
When do we get logical errors?
What are different types of operators?
What is a buffer in c?