I am curious why sometimes I see a #define with asterisk's around a number and other times I do not.
#define bla_bla_bla (20)
Or
#define bla_bla_bla 20
Curious about #define bla_bla_bla (20)
- Chris Ruff
- Posts: 222
- Joined: Thu Apr 24, 2008 4:09 pm
- Location: topsail island, nc
- Contact:
Re: Curious about #define bla_bla_bla (20)
This is interesting:
#define 20 * n
#define (20 * n)
return (3 * b)
this is not interesting
#define 20
#define (20)
return (0)
guys just do the () out of habit, even when not necessary
Chris
#define 20 * n
#define (20 * n)
return (3 * b)
this is not interesting
#define 20
#define (20)
return (0)
guys just do the () out of habit, even when not necessary
Chris
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand