Skip to content

Instantly share code, notes, and snippets.

View Akxai's full-sized avatar
:octocat:
Copying Code!

Akshay Aileni Akxai

:octocat:
Copying Code!
View GitHub Profile
@LokeshKumarES
LokeshKumarES / L6Q2_Function_For_Power(a,b).c
Created June 8, 2020 07:22
Write a function power (a, b), to calculate the value of a raised to b.
#include<stdio.h>
#include<conio.h>
#include<math.h>
int power(int a, int b);
int main()
{
int a, b, res;
printf("Enter a: ");
scanf("%d", &a);