Monday, 9 January 2012

"Sequence Point" in C

                           A sequence point is a point at which the dust has settled and all side effects that have seen so far are guaranteed to be complete.
      In C following are described as sequence point :
  •           at the end of full expression.(not a sub expression)
  •           at the ||,&&,?: and comma operator
  •           a function call ( after evaluation of all the arguments and just before the actual call)
Continue reading "Sequence Point" in C