char *arr[10];
#include<stdio.h> int main() { printf("%f\n", log(36.0)); return 0; }
Declaration syntax: double log(double);
Example:
#include <stdio.h>
#include <math.h>
int main ()
{
printf ("fmod of 5.5 by 1.3 is %lf\n", fmod (5.5, 1.3) );
return 0;
}
Output:
fmod of 5.5 by 1.3 is 0.300000
int (*pf)();
char *ptr[3]();
char *ptr[3];
char (*ptr[3])();
char **ptr[3];
char *ptr[3];
int *f();
float *(ptr)*int;
float *(*ptr)(int)
float *(*ptr)(int*)
float (*ptr)(int)
float *(*ptr)(int*)
char **argv;
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.