Technicalsymposium.com-Free Email Alerts


Enter Your Email :

Important Note:Login & Check Your Email Inbox and Activate Confirmation Link

Subscribe & Get All Fresher Jobs Information & Study Materials PDF and Projects- Free Download

C Programming Books PDF


C Aptitude Question Papers


Datastructure Programming in C



C Programming & Tech Interview Materials PDF- Free Download

C Program For FINDING POWER VALUE OF GIVEN NUMBER

void main()

{

int n,i,r,c=1;

clrscr();

printf("Enter the n value:");

scanf("%d",&n);

printf("Enter the r value:");

scanf("%d",&r);

for(i=1;i<=r;i++)

{

c=c*n;

}

printf("the power value is=%d",c);

getch();

}

Download All C Programming & Study Materials PDF