Curious about #define bla_bla_bla (20)

Discussion to talk about software related topics only.
Post Reply
seulater
Posts: 445
Joined: Fri Apr 25, 2008 5:26 am

Curious about #define bla_bla_bla (20)

Post by seulater »

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
User avatar
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)

Post by Chris Ruff »

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
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand
Post Reply