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
Write program to remove duplicate in an array?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
How is = symbol different from == symbol in c programming?
Explain how do you sort filenames in a directory?
Write a program to use switch statement.
Can include files be nested?
Why is c faster?
What is printf () in c?
What are formal parameters?
What are the 5 types of organizational structures?
What is a char in c?
how to construct a simulator keeping the logical boolean gates in c
Explain what are linked list?
What are the different types of pointers used in c language?
In C programming, how do you insert quote characters (‘ and “) into the output screen?