I am taking a class in C++ and I noticed there are only a few math operators to use. I also noticed that C++ does not come with an exponential operator within its math library.

Why must one always write a function for this? Is there a reason for the makers o C++ to omit this operand?

Thanks

link|improve this question

0% accept rate
Not a real question???? Maybe on Bizarro SO :-) – paxdiablo Sep 23 '10 at 3:35
4  
@pax: It's the "why" phrasing. Too many question on Stack Overflow in the form "Why doesn't my Porche 911 come with a hot tub?". – dmckee Sep 23 '10 at 3:39
1  
BTW--I didn't cast one of those votes. It's a reasonable question despite the unwarranted implication that such decisions are without cost. – dmckee Sep 23 '10 at 3:54
feedback

4 Answers

You don't write a function for this (unless you're mad, of course). There's a perfectly good pow function defined in cmath.

Aside: if you try to use ^ as a power operator, as some people are wont to do, you'll be in for a nasty surprise. It's the exclusive-or (XOR) operator (see here).

link|improve this answer
+1: Both of us pointed to the same link :) – ArunSaha Sep 23 '10 at 3:29
the lovely ^ trap ;) – StackUnderflow Sep 23 '10 at 3:49
3  
It only works for 1^0. – dan04 Sep 23 '10 at 4:57
Ha! I just found out that ^ is an OR operator ;) – James Hayek Sep 23 '10 at 20:51
3  
Its NOT OR, its XOR :) See: en.wikipedia.org/wiki/Bitwise_operation#XOR – ArunSaha Sep 23 '10 at 20:59
feedback

Most C operations readily intended to mapped to a single processor instruction when C was invented. At the time, exponentiation was not a machine instruction, thus the library routine.

link|improve this answer
"Intended" may be too strong. C did map fairly directly onto the instruction sets of common architectures of the era, but I've never read of K or R saying "we can't have that feature, it's not something the machine does...". – dmckee Sep 23 '10 at 3:37
In fact, float-to-int casts and back are implicit, i.e. don't require an operation, but they were far more expensive than a single processor instruction. – MSalters Sep 23 '10 at 7:49
feedback

There are pow and exp functions in math library.

link|improve this answer
I just learned this after much "Google-ing". :) – James Hayek Sep 23 '10 at 20:50
feedback

What platform and which compiler are you using? My guess is TurboC. Mostly cmath file has most of the mathematical functions covered in other compilers.

link|improve this answer
XCode at home, Visual Studio at school. – James Hayek Sep 23 '10 at 20:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.