...
Code Block | ||
---|---|---|
| ||
public int do_operation(int a,int b) { int temp = a + b; //Could result in overflow //doperform other processing return temp; } |
...
...
Code Block | ||
---|---|---|
| ||
public int do_operation(int a,int b) { int temp = a + b; //Could result in overflow //doperform other processing return temp; } |
...