Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 02-16-2005, 07:55 PM   #1 (permalink)
Insane
 
Locke's Avatar
 
Location: The reddest state ever. :(
[c++] symbolic constants

I'm having trouble figuring out how to represent the value of pi in two different ways using symbolic constants. The book is giving me no useful info. Could I get some help? Thanks.
__________________
CUBS WIN, CUBS WIN!!!! - Pat Hughes
"Don't surround yourself with yourself." Yes
Locke is offline  
Old 02-16-2005, 08:09 PM   #2 (permalink)
Insane
 
Symbolic constants are just defines.

So #define PI 3.14 is one way to represent PI
username is offline  
Old 02-16-2005, 08:29 PM   #3 (permalink)
Insane
 
Locke's Avatar
 
Location: The reddest state ever. :(
hey thanks. Could I also do something like: Const PI = 3.14 as the second way. Or can I just do #define PI 3.1415?
__________________
CUBS WIN, CUBS WIN!!!! - Pat Hughes
"Don't surround yourself with yourself." Yes
Locke is offline  
Old 02-16-2005, 08:48 PM   #4 (permalink)
Insane
 
#define PI 3.1415 is the same method as #define PI 3.14 and Const PI = 3.14 wouldn't be a symbolic constant. Think about what #define does. It replaces the token PI in the source code with the number 3.14 before the code is compiled. Using this idea, a #define could be more than a number...
username is offline  
Old 02-16-2005, 09:34 PM   #5 (permalink)
Upright
 
Location: Waterloo
Keep in mind though that if you are using the term const, you need a type, it would be

const double PI = 3.14
__________________
Everyone on the Universal Serial Bus!
Molo is offline  
 

Tags
constants, symbolic


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 01:25 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47