C Code for Antilog

This c programming code is used to find the antilog. 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 antilog.

#include<stdio.h>
#include<math.h>
void main()
{
    float logBase2,logBase10,logBasee,x=10;
    logBase2 = pow(2,x);
    logBase10 = pow(10,x);
    logBasee = pow(2.718281828,x);
    printf("Anti Log of 10 for base as 2 = %f",logBase2);
    printf("\nAnti Log of 10 for base as 10 = %f",logBase10);
    printf("\nAnti Log of 10 for base as e = %f",logBasee);
}
Other Programming Codes
Online Calculator : Antilog
Click on the select code link to copy and paste this free c program code for antilog.

english Calculators and Converters


Sitemap