الصفحة الرئيسيةC programs C program to find the power of a number byAjay Kadtan •أغسطس 03, 2019 0 Program:#include<stdio.h> #include<math.h> int main( ) { int x, y, p; printf("Enter base value "); scanf("%d",&x); printf("Enter exponent value :"); scanf("%d",&y); p = pow (x,y); printf("Power=%d",p); return 0; } Output: Tags: C programs Facebook Twitter