CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

exponential operation

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
Guest








exponential operation
PostPosted: Fri Apr 30, 2004 2:54 am     Reply with quote

Hi,

The equation 2^(x-1) is exponential form... Is der a way that I can express this using bit shifting operators.

Or any other suggestions..

Thnx
Haplo



Joined: 06 Sep 2003
Posts: 659
Location: Sydney, Australia

View user's profile Send private message

PostPosted: Fri Apr 30, 2004 3:04 am     Reply with quote

As long as x>1, the following should do the job:

result=2<<(x-2);
Guest








PostPosted: Fri Apr 30, 2004 3:09 am     Reply with quote

Haplo wrote:
As long as x>1, the following should do the job:

result=2<<(x-2);


Is der another way if I'm going to start my x = 1.

thnx
Haplo



Joined: 06 Sep 2003
Posts: 659
Location: Sydney, Australia

View user's profile Send private message

PostPosted: Fri Apr 30, 2004 3:13 am     Reply with quote

Try
result=1<<(x-1);

This should work for x=1 as well.
Guest








PostPosted: Fri Apr 30, 2004 3:18 am     Reply with quote

Haplo wrote:
Try
result=1<<(x-1);

This should work for x=1 as well.


Thanx
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group