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

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

Building Little Languages with Macros

(Page 2 of 12)
Apr04: Building Little Languages With Macros


(a)
#define swap(x,y) {int tmp=y; y=x; x=tmp;}

(b)
swap(c.red, d->blue)

(c)
{ int tmp=d->blue; d->blue=c.red; c.red=tmp; }

(d)
swap(tmp, other)

(e)
{ int tmp=other; other=tmp; tmp=tmp; }

Example 1: swap.

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



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK