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
January 01, 2006

Ch: A C/C++ Interpreter for Script Computing

(Page 9 of 10)

January, 2006: Ch: A C/C++ Interpreter for Script Computing

Listing 2

/* File: nestedfunc.chf */ 
int nestedfunc(int a, int b) { 
    int innerfunc(int i, int j) { 
        int k; 
        k = 2*(i+j); 
        return k; 
    } 
    int c; 
    c = innerfunc(a, b); 
    return c; 
} 

Previous Page | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 Next Page
TOP 5 ARTICLES
No Top Articles.



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK