c program to find power of a number without using pow function

  1. # include < stdio . h >  
  2. # include < string . h >  
  3. # include < conio . h >  
  4. # include < math >  
  5. # include < stdlib >  
  6. int Pow ( int a , int b ) {  
  7.     int power = 1 , i ;  
  8.     for ( i = 1 ; i < = b ; + + i ) {  
  9.         power = power * a ;  
  10.     }  
  11.     return power ;  
  12. }  
  13. int main ( ) {  
  14.     long long int base , exponent ;  
  15.   
  16.     printf ( " enter Base : " ) ;  
  17.     scanf ( " % d " , & base ) ;  
  18.   
  19.     printf ( " enter Power : " ) ;  
  20.     scanf ( " % d " , & exponent ) ;  
  21.   
  22.     printf ( "  % d ^ % d = % d " , base , exponent , Pow ( base , exponent ) ) ;  
  23. }  

 

Comments

Popular posts from this blog