FREE Subscription to Dr. Dobb’s Digest: Same Great Content, New Digital Edition
Site Archive (Complete)
C++
Email
Print
Reprint

add to:
Del.icio.us
Digg
Google
Furl
Slashdot
Y! MyWeb
Blink
February 01, 2004

Tackling C++ Tail Calls

(Page 2 of 7)
February 04:

Example 1: A C++ tail call.

(a)
void foo (int x)           
{                          
  ...                      
  if (x == 0) bar (x)      
  else        bar (x-5);     
}                          
                             

(b) float foo (float a, float b) { ... return bar (a/2); }

Previous Page | 1 | 2 | 3 | 4 | 5 | 6 | 7 Next Page
RELATED ARTICLES
No Related Articles
TOP 5 ARTICLES
No Top Articles.



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK