Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFcccc
public int do_operation(int a,int b)
{
   int temp = a + b;
//Could result in overflow 
//do other processing
   return temp;
}

...