9951 explained code solutions for 126 technologies


cGet the power of a number


#include <math.h>
pow(x,y);ctrl + c
include <math.h

Name of library to be included

pow(x,y)

Function to get x raised to the yth power (x**y)