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                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 
Categories >> Software >> Programming-Languages >> C
 
 
 
Question
Write code for atoi(x) where x is hexadecimal string.
 Question Submitted By :: Superhuman
I also faced this Question!!     Rank Answer Posted By  
 
Answer
int n=strlen(x) // where x is pointer to hex string
int sum=0;
int leftshift=0;
while(n>0)
{
  if((x[n-1]>='0') && (x[n-1]<='9'))
    sum+=(x[n-1]-'0')<<leftshift;
  if((x[n-1]>='A') && (x[n-1]<='F'))
    sum+=(x[n-1]-'A'+10)<<leftshift;
  if((x[n-1]>='a') && (x[n-1]<='f'))
    sum+=(x[n-1]-'a'+10)<<leftshift;
  n--;
  leftshift+=4;
}
 
5
John Huang
 
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