Horje
C log Code Example
C log
#include <stdio.h>
#include <math.h>
int main()
{
    double num = 5.6, result;

    result = log(num);
    printf("log(%.1f) = %.2f", num, result);

    return 0;
}




C

Related
how to allocate memory for pointer in c Code Example how to allocate memory for pointer in c Code Example
printf("%3d ",XX); Code Example printf("%3d ",XX); Code Example
c binary search Code Example c binary search Code Example
which library include size_t in C Code Example which library include size_t in C Code Example
how to transform a char to ascii code in c Code Example how to transform a char to ascii code in c Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10