Hi,
On Mon, Mar 15, 2010 at 05:01:09PM -0600, ThanhVu (Vu) Nguyen wrote:
> Hi, I am trying to insert a function call "fun_dummy" at each branch of an
> if-else statement but facing some problems. Hope someone can help. TIA
> [...]
> Below lists my code, the problem with this is that it onl
Hi, I am trying to insert a function call "fun_dummy" at each branch of an
if-else statement but facing some problems. Hope someone can help. TIA
For example
original code
foo(){
if (a > 10){
if (b < 100){
}
else{
}
}
else{
}
}//end foo
becomes
foo(){
if (a > 10){