nested function call faster or not ?
- by KaluSingh Gabbar
I have this silly argument with a friend and need a authoritative word on it.
I have these two snippet and want to know which one is faster ? [A or B]
(assuming that compiler does not optimize anything)
[A]
if ( foo () );
[B]
int t = foo ();
if ( t )