ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories >> Software >> Programming-Languages >> C
 
 
 
Question
Function to find the given number is a power of 2 or not?
 Question Submitted By :: Kantharaju
I also faced this Question!!     Rank Answer Posted By  
 
Answer
int ispwrof2(int num)
{
	int temp = 0;
	if(num <= 0)
		return 0;
	else if(num > 0)
	{
		while(num%2 == 0)
		{
			temp = num/2;
			num = temp;

		}

	 }
	 if(num == 1)
		return 1;
	 else
		return 0;
}
 
0
Sahil
 
View All Answers
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com