C de bildiğimiz gibi kuvvet alan bir math.h kütüphanesi fonksiyonu bulunmaktadir. hatta ismi de pow() dur. Ancak illa math.h ‘a ihtiyacımız yok bu fonk. için kendimiz gayet rahat bir şekilde tanımlayabiliriz. Nasıl mı? işte kodlar aşağıda :
#include <stdio.h>
int integerPower(int,int);
void main()
{
int base,exponent;
printf(“enter the base : “);
scanf(“%d”,&base);
printf(”
enter the exponent :”);
scanf(“%d”,&exponent);
printf(“%d to the power %d is equal to %d”,base,exponent,integerPower(base,exponent));
}
int integerPower(int b,int e)
{
int result=1;
while(e>=1)
{
result=result*b;
e-=1;
}
return result;
}
ÖZELLİKLER: Boyut: 28x8x6 cm Ağırlık: 850gr Ekran: Yok Devre sayısı: 30 Konuşma süresi: 35 dakika…
There are two kinds of questions: yes or no questions and wh- questions. You ask…
A positive sentence tells you that something is so. A sentence that tells you something…
Use the base form of a verb to give commands or make direct requests. This…
A sentence is a group of words that expresses a complete thought. A sentence must…
An interjection is a word that expresses a sudden, strong feeling such as surprise, pain,…