Answer Posted / guest
The point (at the end of a full expression, or at the ||, &&,
?:, or comma operators, or just before a function call) at
which all side effects are guaranteed to be complete.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is abstract data structure in c?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is the difference between constant pointer and constant variable?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is #include stdio h and #include conio h?
What is difference between scanf and gets?
why programs in c are running with out #include
What is #include stdio h?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is typedef?
What is an lvalue?
What are the various types of control structures in programming?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Can 'this' pointer by used in the constructor?