C Code for Geometric

This c programming code is used to find the Geometric. You can select the whole c code by clicking the select option and can use it. When you click text, the code will be changed to text format. This c program code will be opened in a new pop up window once you click pop-up from the right corner. You can just copy, paste this c code and use it to find the Geometric.

#include<stdio.h>
#include<math.h>

int main(void)
{
    // ((X1)(X2)(X3)........(XN))1/N
    double x1=2,x2=4,x3=6,x4=7,x5=6;
    double x,N=5;
    x=(x1*x2*x3*x4*x5);
    x=pow(x,(1/N));
    printf("Geometric Mean for Xn: %lf",x);
    return 0;
}
Other Programming Codes
Online Calculator : Geometric
Click on the select code link to copy and paste this free c program code for Geometric.

english Calculators and Converters


Sitemap