Program to find power of any number using for loop in C-language

#include<stdio.h>
int main()
{
 int n,i,c=1,p;
    printf("Enter thenumber\n");
    scanf("%d",&n);
    printf("Enter the power\n");
    scanf("%d",&p);
 for(i=1;i<=p;i++)
 {
      c=c*n;
  }
    printf("Power of %d^%d=%d",n,p,c);
}

OUTPUT
Enter the number
6
Enter the power
2
Power of 6^2=36

Visit Homepage

Comments

Popular posts

Creative pattern of butterfly in C-language

Introduction of C-language.

Variable & Datatype for C-programming

Program to see all ASCII value using for loop in C-language

Language Translator of C-language

Errors in C-language

Binary searching in C-language

Addition of two numbers in c language

Program to input an array elements and then display the same array in C-language